aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-14 08:21:50 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-14 08:45:04 -0800
commit6ad3f71ec521ccfc1fb4d6c6f889395779ce2db7 (patch)
treec990c372d95cda3cf31098af4ba92a3ce61c6916
parentcf86fd10ee16a048b646a96760bea475cb989473 (diff)
Update generated Python Op docs.
Change: 142019467
-rw-r--r--tensorflow/g3doc/api_docs/python/constant_op.md2
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.set_random_seed.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/g3doc/api_docs/python/constant_op.md b/tensorflow/g3doc/api_docs/python/constant_op.md
index 941915e2b1..604edf6660 100644
--- a/tensorflow/g3doc/api_docs/python/constant_op.md
+++ b/tensorflow/g3doc/api_docs/python/constant_op.md
@@ -709,7 +709,7 @@ tf.set_random_seed(1234)
a = tf.random_uniform([1])
b = tf.random_normal([1])
-# Repeatedly running this block with the same graph will generate different
+# Repeatedly running this block with the same graph will generate the same
# sequences of 'a' and 'b'.
print("Session 1")
with tf.Session() as sess1:
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.set_random_seed.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.set_random_seed.md
index af817dbafa..d8d3abc5eb 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.set_random_seed.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.set_random_seed.md
@@ -74,7 +74,7 @@ tf.set_random_seed(1234)
a = tf.random_uniform([1])
b = tf.random_normal([1])
-# Repeatedly running this block with the same graph will generate different
+# Repeatedly running this block with the same graph will generate the same
# sequences of 'a' and 'b'.
print("Session 1")
with tf.Session() as sess1: