From f2d596d41dafb64ae5616921c433559265d106dc Mon Sep 17 00:00:00 2001 From: yangyaming Date: Wed, 13 Sep 2017 16:29:08 +0800 Subject: [PATCH] Fix typos. --- paddle/operators/expand_op.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/paddle/operators/expand_op.cc b/paddle/operators/expand_op.cc index 9d1d76a2900..7d22d8a9f0b 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"); } }; -- GitLab