Skip to content

Commit 24dc58c

Browse files
committed
Modify based on reviewer's comment, test=document_fix
1 parent 6b739ca commit 24dc58c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/paddle/fluid/dygraph/dygraph_to_static/program_translator.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -939,9 +939,9 @@ def func(x):
939939
x = paddle.ones([1, 2])
940940
main_prog, start_prog, inputs, outputs = prog_trans.get_program(func, x)
941941
print([i.name for i in inputs])
942-
# [u'generated_tensor_0'] the feed input tensor name representing x
942+
# [u'generated_tensor_0'] the feed input Tensor name representing x
943943
print([o.name for o in outputs])
944-
# [u'_generated_var_4'] the fetch output tensor name representing x_v
944+
# [u'_generated_var_4'] the fetch output Tensor name representing x_v
945945
946946
"""
947947
assert callable(

0 commit comments

Comments
 (0)