summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorDarcy Meyer <darcy2252755@gmail.com>2017-12-14 22:22:43 -0500
committerDarcy Meyer <darcy2252755@gmail.com>2017-12-14 22:22:43 -0500
commitde7e99df33b51021f1bae8df4eec3f8cc259a3e5 (patch)
treeca82f49b60a00f54e0e0d96ab929d8c32db725e2 /numpy
parentd233e1f4c176de8b1bf1365aac48caa10610a402 (diff)
downloadpython-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.tar.gz
python-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.tar.bz2
python-numpy-de7e99df33b51021f1bae8df4eec3f8cc259a3e5.zip
DOC: clarify that np.absolute == np.abs
See #9841
Diffstat (limited to 'numpy')
-rw-r--r--numpy/core/code_generators/ufunc_docstrings.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/code_generators/ufunc_docstrings.py b/numpy/core/code_generators/ufunc_docstrings.py
index 504d7e6a9..0625e2a6e 100644
--- a/numpy/core/code_generators/ufunc_docstrings.py
+++ b/numpy/core/code_generators/ufunc_docstrings.py
@@ -41,7 +41,7 @@ def add_newdoc(place, name, doc):
add_newdoc('numpy.core.umath', 'absolute',
"""
- Calculate the absolute value element-wise.
+ Calculate the absolute value element-wise. Equivalent to ``numpy.abs``.
Parameters
----------