aboutsummaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorGravatar Stephan Hoyer <shoyer@google.com>2017-04-20 15:34:26 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-04-20 16:50:20 -0700
commitf942e8c21658e20cdba20b3bba025a71cbb5e60a (patch)
treec4900f26bdba5dbb4ea7894fc2c06889740aa7d9 /README.md
parent20a52139efd7ddf34740db99d993c66976fc94c1 (diff)
Fix typo in "First TensorFlow program" from open source README
This is sort of pedantic, but the Python prompt prints strings with quotes. Change: 153772799
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index cd0bffde79..3ab4773681 100644
--- a/README.md
+++ b/README.md
@@ -52,7 +52,7 @@ $ python
>>> hello = tf.constant('Hello, TensorFlow!')
>>> sess = tf.Session()
>>> sess.run(hello)
-Hello, TensorFlow!
+'Hello, TensorFlow!'
>>> a = tf.constant(10)
>>> b = tf.constant(32)
>>> sess.run(a+b)