aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/tutorials/representation/word2vec.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/tutorials/representation/word2vec.md')
-rw-r--r--tensorflow/docs_src/tutorials/representation/word2vec.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/tutorials/representation/word2vec.md b/tensorflow/docs_src/tutorials/representation/word2vec.md
index 0a1c41c84a..7964650e19 100644
--- a/tensorflow/docs_src/tutorials/representation/word2vec.md
+++ b/tensorflow/docs_src/tutorials/representation/word2vec.md
@@ -317,7 +317,7 @@ optimizer = tf.train.GradientDescentOptimizer(learning_rate=1.0).minimize(loss)
Training the model is then as simple as using a `feed_dict` to push data into
the placeholders and calling
-@{tf.Session.run} with this new data
+`tf.Session.run` with this new data
in a loop.
```python