From e3f1556e4d77908993509b95baea22019c6a9318 Mon Sep 17 00:00:00 2001 From: zhoukunsheng Date: Wed, 27 Mar 2019 19:27:38 +0800 Subject: [PATCH] fix comment format error --- python/paddle/fluid/layers/nn.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/python/paddle/fluid/layers/nn.py b/python/paddle/fluid/layers/nn.py index f703b7c810..76c4c146d1 100644 --- a/python/paddle/fluid/layers/nn.py +++ b/python/paddle/fluid/layers/nn.py @@ -4723,6 +4723,7 @@ def reduce_all(input, dim=None, keep_dim=False, name=None): Examples: .. code-block:: python + # x is a bool Tensor variable with following elements: # [[True, False] # [True, True]] @@ -4772,6 +4773,7 @@ def reduce_any(input, dim=None, keep_dim=False, name=None): Examples: .. code-block:: python + # x is a bool Tensor variable with following elements: # [[True, False] # [False, False]] -- GitLab