Skip to content

Commit 3d68260

Browse files
sourcefrogcaisq
authored andcommitted
Fix markdown nit (#17163)
Without a leading blank line, it doesn't render properly in https://www.tensorflow.org/programmers_guide/variables#variable_collections.
1 parent afae8a8 commit 3d68260

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tensorflow/docs_src/programmers_guide/variables.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,10 @@ them. For this reason TensorFlow provides **collections**, which are named lists
6262
of tensors or other objects, such as `tf.Variable` instances.
6363

6464
By default every `tf.Variable` gets placed in the following two collections:
65+
6566
* `tf.GraphKeys.GLOBAL_VARIABLES` --- variables that can be shared across
66-
multiple devices,
67-
* `tf.GraphKeys.TRAINABLE_VARIABLES`--- variables for which TensorFlow will
67+
multiple devices,
68+
* `tf.GraphKeys.TRAINABLE_VARIABLES` --- variables for which TensorFlow will
6869
calculate gradients.
6970

7071
If you don't want a variable to be trainable, add it to the

0 commit comments

Comments
 (0)