diff options
author | Stefan van der Walt <stefan@sun.ac.za> | 2007-02-28 20:21:39 +0000 |
---|---|---|
committer | Stefan van der Walt <stefan@sun.ac.za> | 2007-02-28 20:21:39 +0000 |
commit | 6481ff29ec06bce69814dc91dc310442029f0370 (patch) | |
tree | 11b30c3498e13d84a7460aac22492ca934810f11 /numpy/core/fromnumeric.py | |
parent | a3aacd3cba852ba63fbfd9381bc41a078d1716db (diff) | |
download | numpy-6481ff29ec06bce69814dc91dc310442029f0370.tar.gz |
Fix searchsorted docstring. Closes #457.
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r-- | numpy/core/fromnumeric.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/fromnumeric.py b/numpy/core/fromnumeric.py index 5bed8933b..573868b61 100644 --- a/numpy/core/fromnumeric.py +++ b/numpy/core/fromnumeric.py @@ -339,7 +339,7 @@ def searchsorted(a, v, side='left'): side -- {'left', 'right'}, default('left'). Returns: - array of indices with the same shape as a. + array of indices with the same shape as v. The array to be searched must be 1-D and is assumed to be sorted in ascending order. |