aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2017-03-30 01:47:23 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-03-30 03:16:56 -0700
commit6e5f92ffc743c9b1765ffe4b79aac29a7059d464 (patch)
tree3fe35dabd451344faaee79280676ec8f33772db5
parent3db6b68b2f73caeaa71317926a0ea4d5f13688f8 (diff)
Fix docstring for get_variable to indent collections correctly.
Change: 151681007
-rw-r--r--tensorflow/python/ops/variable_scope.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/python/ops/variable_scope.py b/tensorflow/python/ops/variable_scope.py
index 1de95f1291..2f97abdc79 100644
--- a/tensorflow/python/ops/variable_scope.py
+++ b/tensorflow/python/ops/variable_scope.py
@@ -1129,7 +1129,7 @@ get_variable.__doc__ = get_variable_or_local_docstring % (
"Gets an existing variable with these parameters or create a new one.",
"",
"trainable: If `True` also add the variable to the graph collection\n"
- " `GraphKeys.TRAINABLE_VARIABLES` (see `tf.Variable`).\n",
+ " `GraphKeys.TRAINABLE_VARIABLES` (see `tf.Variable`).\n ",
"GraphKeys.GLOBAL_VARIABLES")