Skip to content

Commit 1ba8f7f

Browse files
authored
The comments in reshape_op is wrong (#6565)
1 parent 79f0ab5 commit 1ba8f7f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

paddle/operators/reshape_op.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,9 @@ Given a 2-D tensor X with 2 rows and 2 columns
8484
[[1, 2], [3, 4]]
8585
8686
and target shape = [1, 4], the reshape operator will transform
87-
the tensor X into a 1-D tensor:
87+
the tensor X into a 2-D tensor:
8888
89-
[1, 2, 3, 4]
89+
[[1, 2, 3, 4]]
9090
9191
)DOC");
9292
}

0 commit comments

Comments
 (0)