diff --git a/paddle/operators/expand_op.cc b/paddle/operators/expand_op.cc index 9d1d76a2900a39b81b9075f1162cdeb55aa36efc..7d22d8a9f0b5525e305e5219fd32e12045c2d077 100644 --- a/paddle/operators/expand_op.cc +++ b/paddle/operators/expand_op.cc @@ -58,10 +58,10 @@ class ExpandOpMaker : public framework::OpProtoAndCheckerMaker { AddAttr>("expandTimes", "Expand times for each dimension."); AddComment(R"DOC( -Expand operator tiles the input by given times. You should set times for each -dimension by providing attribute 'expandTimes'. Rank of input tensor should be -in [1, 6]. Please draw an inttention that size of 'expandTimes' must be same -with rank of input tensor. +Expand operator tiles the input by given times number. You should set times +number for each dimension by providing attribute 'expandTimes'. Rank of input +tensor should be in [1, 6]. Please draw an attention that size of +'expandTimes' must be same with rank of input tensor. )DOC"); } };