diff --git a/imperative/python/megengine/functional/elemwise.py b/imperative/python/megengine/functional/elemwise.py index b68899564494584a2d169ef48ef2dde972608fd8..bc80bfe497f81165ea032e616c0b40d0c2239771 100644 --- a/imperative/python/megengine/functional/elemwise.py +++ b/imperative/python/megengine/functional/elemwise.py @@ -830,7 +830,7 @@ def logaddexp(x: Tensor, y: Tensor) -> Tensor: def round(x): r"""Element-wise :math:`\operatorname{round}(x)` function. - Rounds each element :math:`x_i` of the input tebsor :math:`x` to the nearest integer-valued number. + Rounds each element :math:`x_i` of the input tensor :math:`x` to the nearest integer-valued number. Args: x: input tensor. Should have a numeric data type. diff --git a/imperative/python/megengine/functional/math.py b/imperative/python/megengine/functional/math.py index fe20d8fbf9628a4bf2fff140048e3860827a08bc..f90153d99d2d62eb0bc1879760697a9c99cf81c4 100644 --- a/imperative/python/megengine/functional/math.py +++ b/imperative/python/megengine/functional/math.py @@ -918,7 +918,7 @@ def normalize( Returns: normalized output tensor. - seealso:: :func:`numpy.linalg.norm` / :func:`~.functional.norm` + .. seealso:: :func:`numpy.linalg.norm` / :func:`~.functional.norm` Examples: