summaryrefslogtreecommitdiff
path: root/numpy/core/fromnumeric.py
diff options
context:
space:
mode:
authorStefan van der Walt <stefan@sun.ac.za>2007-02-28 20:21:39 +0000
committerStefan van der Walt <stefan@sun.ac.za>2007-02-28 20:21:39 +0000
commit6481ff29ec06bce69814dc91dc310442029f0370 (patch)
tree11b30c3498e13d84a7460aac22492ca934810f11 /numpy/core/fromnumeric.py
parenta3aacd3cba852ba63fbfd9381bc41a078d1716db (diff)
downloadnumpy-6481ff29ec06bce69814dc91dc310442029f0370.tar.gz
Fix searchsorted docstring. Closes #457.
Diffstat (limited to 'numpy/core/fromnumeric.py')
-rw-r--r--numpy/core/fromnumeric.py2
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.