From 19ac5702c9a112f7aab61b801a1de179a3578bbb Mon Sep 17 00:00:00 2001 From: qingqing01 Date: Tue, 23 Jan 2018 20:02:54 +0800 Subject: [PATCH] Fix the typo. --- python/paddle/v2/image.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/python/paddle/v2/image.py b/python/paddle/v2/image.py index 53d5d8dbd..e5000e440 100644 --- a/python/paddle/v2/image.py +++ b/python/paddle/v2/image.py @@ -277,10 +277,9 @@ def left_right_flip(im, is_color=True): im = left_right_flip(im) - :paam im: input image with HWC layout or HW layout for gray image - + :param im: input image with HWC layout or HW layout for gray image :type im: ndarray - :paam is_color: whether color input image or not + :param is_color: whether input image is color or not :type is_color: bool """ if len(im.shape) == 3 and is_color: -- GitLab