Skip to content

Commit

Permalink
Merge pull request numpy#12601 from abdurrehman11/numpy-delete-docs
Browse files Browse the repository at this point in the history
DOC: Correct documentation of `numpy.delete` obj parameter.
  • Loading branch information
ahaldane authored Dec 27, 2018
2 parents 4adf52e + 4c4ac5c commit e6970fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion numpy/lib/function_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e6970fd

Please sign in to comment.