fixed typo in docstring for unchanged shape method

This commit is contained in:
Naman Kamra 2018-02-15 17:51:49 +04:00 committed by GitHub
parent e5e03ef314
commit df803bd35b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()]