From e8a62a30b35153e3ba8d32bdfd5845e1f92fe46b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=94=B0=E4=BC=A0=E6=AD=A6?= Date: Fri, 27 Oct 2017 20:47:08 -0500 Subject: [PATCH] Fix minor typo --- tensorflow/docs_src/programmers_guide/graphs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/docs_src/programmers_guide/graphs.md b/tensorflow/docs_src/programmers_guide/graphs.md index 5ec3738d7d2..c08043835a3 100644 --- a/tensorflow/docs_src/programmers_guide/graphs.md +++ b/tensorflow/docs_src/programmers_guide/graphs.md @@ -89,7 +89,7 @@ to all API functions in the same context. For example: * Executing `v = tf.Variable(0)` adds to the graph a @{tf.Operation} that will store a writeable tensor value that persists between @{tf.Session.run} calls. The @{tf.Variable} object wraps this operation, and can be used [like a - tensor](#tensor-like-objects), which will read the current value of the + tensor](#tensor-like_objects), which will read the current value of the stored value. The @{tf.Variable} object also has methods such as @{tf.Variable.assign$`assign`} and @{tf.Variable.assign_add$`assign_add`} that create @{tf.Operation} objects that, when executed, update the stored value.