From 38dfa334096b29525f58cc57b122fe0ea27ab5ea Mon Sep 17 00:00:00 2001 From: wawltor Date: Tue, 14 Jan 2020 17:57:42 +0800 Subject: [PATCH] Fix the abs operator doc bug, test=develop (#1733) Fix the abs doc bug, change the Tenosr to Tensor --- doc/fluid/api_cn/layers_cn/abs_cn.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/fluid/api_cn/layers_cn/abs_cn.rst b/doc/fluid/api_cn/layers_cn/abs_cn.rst index 41954b9e7..754f65f38 100644 --- a/doc/fluid/api_cn/layers_cn/abs_cn.rst +++ b/doc/fluid/api_cn/layers_cn/abs_cn.rst @@ -11,7 +11,7 @@ abs out = |x| 参数: - - **x** (Variable)- 多维Tenosr,数据类型为float32或float64。 + - **x** (Variable)- 多维Tensor,数据类型为float32或float64。 - **name** (str) – 该参数供开发人员打印调试信息时使用,具体用法请参见 :ref:`api_guide_Name` ,默认值为None。 返回:表示绝对值结果的Tensor,数据类型与x相同。 -- GitLab