aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Pool <mbp@sourcefrog.net>2018-02-21 20:13:38 -0800
committerShanqing Cai <cais@google.com>2018-02-21 23:13:38 -0500
commit3d68260b2c3e48d9a56d4cbb29241e28312375dc (patch)
tree20bff86cb675fe89f61ee0951c9a616a6bd1e0f1
parentafae8a8f98b72dd476e7947cda5351fb34bc684f (diff)
downloadtensorflow-3d68260b2c3e48d9a56d4cbb29241e28312375dc.tar.gz
Fix markdown nit (#17163)
Without a leading blank line, it doesn't render properly in https://www.tensorflow.org/programmers_guide/variables#variable_collections.
-rw-r--r--tensorflow/docs_src/programmers_guide/variables.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/tensorflow/docs_src/programmers_guide/variables.md b/tensorflow/docs_src/programmers_guide/variables.md
index 64250738056..e8cf7711552 100644
--- a/tensorflow/docs_src/programmers_guide/variables.md
+++ b/tensorflow/docs_src/programmers_guide/variables.md
@@ -62,9 +62,10 @@ them. For this reason TensorFlow provides **collections**, which are named lists
of tensors or other objects, such as `tf.Variable` instances.
By default every `tf.Variable` gets placed in the following two collections:
+
* `tf.GraphKeys.GLOBAL_VARIABLES` --- variables that can be shared across
-multiple devices,
- * `tf.GraphKeys.TRAINABLE_VARIABLES`--- variables for which TensorFlow will
+ multiple devices,
+ * `tf.GraphKeys.TRAINABLE_VARIABLES` --- variables for which TensorFlow will
calculate gradients.
If you don't want a variable to be trainable, add it to the