summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/arrays.ndarray.rst4
-rw-r--r--doc/source/reference/routines.linalg.rst2
2 files changed, 2 insertions, 4 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst
index 106ccd7cb..0d7bf0304 100644
--- a/doc/source/reference/arrays.ndarray.rst
+++ b/doc/source/reference/arrays.ndarray.rst
@@ -567,11 +567,9 @@ Matrix Multiplication:
.. note::
Matrix operators ``@`` and ``@=`` were introduced in Python 3.5
- following PEP465_ and are available since NumPy 1.10.0. Further
+ following :pep:`465` and are available since NumPy 1.10.0. Further
information can be found in the :func:`matmul` documentation.
-.. _PEP465: https://www.python.org/dev/peps/pep-0465/
-
Special methods
===============
diff --git a/doc/source/reference/routines.linalg.rst b/doc/source/reference/routines.linalg.rst
index 97bdf3974..f9d37af88 100644
--- a/doc/source/reference/routines.linalg.rst
+++ b/doc/source/reference/routines.linalg.rst
@@ -43,7 +43,7 @@ The ``@`` operator
Introduced in NumPy 1.10.0, the ``@`` and ``@=`` operators are preferable to
other methods when computing the matrix product between 2d arrays. The
-:func:`numpy.matmul` function implements the semantics of the ``@`` operator.
+:func:`numpy.matmul` function implements the ``@`` operator.
.. currentmodule:: numpy