summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEnrique Matías Sánchez (Quique) <cronopios@gmail.com>2020-10-02 09:31:55 +0200
committerEnrique Matías Sánchez (Quique) <cronopios@gmail.com>2020-10-02 09:31:55 +0200
commit01e48bf1222794454a8fad7c44e6d2ac19c7a9da (patch)
tree413e03bd4bdebafe450d6abdee80c51c64a4b111
parent57adb4bb6a8eb46fed597d4a781e47bcb86ebe11 (diff)
downloadnumpy-01e48bf1222794454a8fad7c44e6d2ac19c7a9da.tar.gz
DOC: Remove bogus reference to _a_
This will make this docstring coherent with the one for ndarray.argmax().
-rw-r--r--numpy/core/_add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/_add_newdocs.py b/numpy/core/_add_newdocs.py
index 879b3645d..b8cf12c60 100644
--- a/numpy/core/_add_newdocs.py
+++ b/numpy/core/_add_newdocs.py
@@ -2618,7 +2618,7 @@ add_newdoc('numpy.core.multiarray', 'ndarray', ('argmin',
"""
a.argmin(axis=None, out=None)
- Return indices of the minimum values along the given axis of `a`.
+ Return indices of the minimum values along the given axis.
Refer to `numpy.argmin` for detailed documentation.