diff options
author | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-07-17 14:10:22 +0530 |
---|---|---|
committer | kritisingh1 <kritisingh1.ks@gmail.com> | 2019-07-23 21:58:19 +0530 |
commit | 2adf9add401874b85659816037de28d14cfcaa11 (patch) | |
tree | ba7b2d065415d1f3f9d4df08e30f056269f9596f /doc/source/reference/arrays.classes.rst | |
parent | e55bcb2f2c40852be7d9f0e6e262c332dd2b277d (diff) | |
download | numpy-2adf9add401874b85659816037de28d14cfcaa11.tar.gz |
[DOC] Resolve bad references in Sphinx warnings
Diffstat (limited to 'doc/source/reference/arrays.classes.rst')
-rw-r--r-- | doc/source/reference/arrays.classes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.classes.rst b/doc/source/reference/arrays.classes.rst index 3b13530c7..83b419306 100644 --- a/doc/source/reference/arrays.classes.rst +++ b/doc/source/reference/arrays.classes.rst @@ -75,7 +75,7 @@ NumPy provides several hooks that classes can customize: :func:`~numpy.matmul`, which currently is not a Ufunc, but could be relatively easily be rewritten as a (set of) generalized Ufuncs. The same may happen with functions such as :func:`~numpy.median`, - :func:`~numpy.min`, and :func:`~numpy.argsort`. + :func:`~numpy.amin`, and :func:`~numpy.argsort`. Like with some other special methods in python, such as ``__hash__`` and ``__iter__``, it is possible to indicate that your class does *not* |