From d6e900467af947eeeee7f348905bea8e1e0e5aae Mon Sep 17 00:00:00 2001 From: GGBond8488 <33050871+GGBond8488@users.noreply.github.com> Date: Wed, 5 Jul 2023 10:48:13 +0800 Subject: [PATCH] fix pow label, test=document_fix (#54945) --- 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 9998ec79ef7..6e876e905e3 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) -- GitLab