diff options
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r-- | numpy/add_newdocs.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py index d4a09523b..09f4e40c4 100644 --- a/numpy/add_newdocs.py +++ b/numpy/add_newdocs.py @@ -5036,7 +5036,7 @@ add_newdoc('numpy.core.multiarray', 'digitize', `bins` is monotonically decreasing. If values in `x` are beyond the bounds of `bins`, 0 or ``len(bins)`` is returned as appropriate. If right is True, then the right bin is closed so that the index ``i`` is such - that ``bins[i-1] < x <= bins[i]`` or bins[i-1] >= x > bins[i]`` if `bins` + that ``bins[i-1] < x <= bins[i]`` or ``bins[i-1] >= x > bins[i]`` if `bins` is monotonically increasing or decreasing, respectively. Parameters @@ -5067,7 +5067,7 @@ add_newdoc('numpy.core.multiarray', 'digitize', See Also -------- - bincount, histogram, unique + bincount, histogram, unique, searchsorted Notes ----- |