From 832f5fa943dc1f621c29c3194651eb4f688f5fcb Mon Sep 17 00:00:00 2001 From: Leonard Lee <896066322@qq.com> Date: Fri, 4 Nov 2016 01:57:33 +0800 Subject: [PATCH] plural should be find (#5368) * plural should be find plural should be find * Update to mention matmul op output --- tensorflow/g3doc/get_started/basic_usage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/g3doc/get_started/basic_usage.md b/tensorflow/g3doc/get_started/basic_usage.md index 1603df9335f..b6d0222ab54 100644 --- a/tensorflow/g3doc/get_started/basic_usage.md +++ b/tensorflow/g3doc/get_started/basic_usage.md @@ -99,7 +99,7 @@ sess = tf.Session() # The call 'run(product)' thus causes the execution of three ops in the # graph: the two constants and matmul. # -# The output of the op is returned in 'result' as a numpy `ndarray` object. +# The output of the matmul is returned in 'result' as a numpy `ndarray` object. result = sess.run(product) print(result) # ==> [[ 12.]]