From 4cb47f72aa484dbd1d7b0dbc75190ad1b17e5cb5 Mon Sep 17 00:00:00 2001 From: GGBond8488 <857631483@qq.com> Date: Wed, 28 Jun 2023 08:15:05 +0000 Subject: [PATCH] fix pow label, test=document_fix --- python/paddle/tensor/math.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/paddle/tensor/math.py b/python/paddle/tensor/math.py index 8b5af17b86f23..0ea704905c9bb 100644 --- a/python/paddle/tensor/math.py +++ b/python/paddle/tensor/math.py @@ -478,7 +478,7 @@ def pow(x, y, name=None): def pow_(x, y, name=None): """ Inplace version of ``pow`` API, the output Tensor will be inplaced with input ``x``. - Please refer to :ref:`api_tensor_pow`. + Please refer to :ref:`api_paddle_pow`. """ if isinstance(y, (int, float)): return _C_ops.pow_(x, y)