Fix typo in the doc: tf.multiplytiply
authorMax Galkin <maxgalkin@google.com>
Mon, 12 Mar 2018 21:52:24 +0000 (14:52 -0700)
committerTensorFlower Gardener <gardener@tensorflow.org>
Mon, 12 Mar 2018 21:56:28 +0000 (14:56 -0700)
https://www.tensorflow.org/api_docs/python/tf/multiply

PiperOrigin-RevId: 188782466

tensorflow/python/ops/math_ops.py

index 5130c50..0063de5 100644 (file)
@@ -328,7 +328,7 @@ def multiply(x, y, name=None):
   return gen_math_ops.mul(x, y, name)
 
 
-multiply.__doc__ = gen_math_ops.mul.__doc__.replace("Mul", "`tf.multiply`")
+multiply.__doc__ = gen_math_ops.mul.__doc__.replace("Multiply", "`tf.multiply`")
 
 
 # TODO(aselle): put deprecation in after another round of global code changes