summaryrefslogtreecommitdiff
path: root/numpy/lib/function_base.py
diff options
context:
space:
mode:
authorAbdur Rehman <rizwan.majeed@venturedive.com>2018-12-21 00:37:11 +0500
committerAbdur Rehman <rizwan.majeed@venturedive.com>2018-12-21 00:37:11 +0500
commit4c4ac5cd8f760446169336b92a5db3c92e787559 (patch)
treeb07cbf7fd3ea0e8b5aa2b129fd0042031474ec02 /numpy/lib/function_base.py
parentf4c497c768e0646df740b647782df463825bfd27 (diff)
downloadnumpy-4c4ac5cd8f760446169336b92a5db3c92e787559.tar.gz
Refactored numpy.delete function docs
Diffstat (limited to 'numpy/lib/function_base.py')
-rw-r--r--numpy/lib/function_base.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/function_base.py b/numpy/lib/function_base.py
index 1ead375de..274f957db 100644
--- a/numpy/lib/function_base.py
+++ b/numpy/lib/function_base.py
@@ -4241,7 +4241,7 @@ def delete(arr, obj, axis=None):
arr : array_like
Input array.
obj : slice, int or array of ints
- Indicate which sub-arrays to remove.
+ Indicate indices of sub-arrays to remove along the specified axis.
axis : int, optional
The axis along which to delete the subarray defined by `obj`.
If `axis` is None, `obj` is applied to the flattened array.