Merge pull request #17042 from namkam5/master

fixed typo in docstring for unchanged shape method
This commit is contained in:
Martin Wicke 2018-02-15 17:38:46 -08:00 committed by GitHub
commit e4c6fe67fc
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()]