Skip to content

Commit 276c5fc

Browse files
Update numpy/_core/fromnumeric.py
Co-authored-by: Pieter Eendebak <[email protected]>
1 parent 82a1421 commit 276c5fc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

numpy/_core/fromnumeric.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1536,7 +1536,7 @@ def searchsorted(a, v, side='left', sorter=None):
15361536
array([0, 5, 1, 2])
15371537
15381538
When `sorter` is used, the returned indices refer to the sorted
1539-
array of 'a' and not 'a' itself:
1539+
array of `a` and not `a` itself:
15401540
15411541
>>> a = np.array([40, 10, 20, 30])
15421542
>>> sorter = np.argsort(a)

0 commit comments

Comments
 (0)