From df803bd35bef6bfa1c145d135e06b4054311ef0b Mon Sep 17 00:00:00 2001 From: Naman Kamra Date: Thu, 15 Feb 2018 17:51:49 +0400 Subject: [PATCH] fixed typo in docstring for unchanged shape method --- tensorflow/python/framework/common_shapes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tensorflow/python/framework/common_shapes.py b/tensorflow/python/framework/common_shapes.py index 3b1092f9231..3c5aebbce8a 100644 --- a/tensorflow/python/framework/common_shapes.py +++ b/tensorflow/python/framework/common_shapes.py @@ -34,7 +34,7 @@ def scalar_shape(unused_op): def unchanged_shape(op): - """Shape function for ops that output an tensor like their first input.""" + """Shape function for ops that output a tensor like their first input.""" return [op.inputs[0].get_shape()]