From 4c4ac5cd8f760446169336b92a5db3c92e787559 Mon Sep 17 00:00:00 2001 From: Abdur Rehman Date: Fri, 21 Dec 2018 00:37:11 +0500 Subject: Refactored numpy.delete function docs --- numpy/lib/function_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/lib/function_base.py') 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. -- cgit v1.2.1