From c6d7ad368931f51766030bf9dc777106b1bdce83 Mon Sep 17 00:00:00 2001 From: fengjiayi Date: Mon, 15 Jan 2018 20:49:26 +0800 Subject: [PATCH] fix typo --- python/paddle/v2/fluid/tests/test_elementwise_min_op.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/v2/fluid/tests/test_elementwise_min_op.py b/python/paddle/v2/fluid/tests/test_elementwise_min_op.py index 5ff5a400139..eeafab5b188 100644 --- a/python/paddle/v2/fluid/tests/test_elementwise_min_op.py +++ b/python/paddle/v2/fluid/tests/test_elementwise_min_op.py @@ -6,7 +6,7 @@ from op_test import OpTest class TestElementwiseOp(OpTest): def setUp(self): self.op_type = "elementwise_min" - # If x and y have the same value, the max() is not differentiable. + # If x and y have the same value, the min() is not differentiable. # So we generate test data by the following method # to avoid them being too close to each other. x = np.random.uniform(0.1, 1, [13, 17]).astype("float32") -- GitLab