summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-01-31 13:33:23 -0700
committerGitHub <noreply@github.com>2017-01-31 13:33:23 -0700
commitbd0fe0aa2159fa1d4570b0c524097b7492f239bf (patch)
tree5f4fddebd8159d630657a9168e1d37fe177d0738
parentddb12e3328bc16175afb6996e0a69b5a9508298a (diff)
parent05e8eb359ffa087d44f88cb2246090045185e1de (diff)
downloadnumpy-bd0fe0aa2159fa1d4570b0c524097b7492f239bf.tar.gz
Merge pull request #8551 from madphysicist/patch-1
DOC: Missing backticks
-rw-r--r--numpy/add_newdocs.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 1d4bf4511..41c560074 100644
--- a/numpy/add_newdocs.py
+++ b/numpy/add_newdocs.py
@@ -5029,7 +5029,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
@@ -5060,7 +5060,7 @@ add_newdoc('numpy.core.multiarray', 'digitize',
See Also
--------
- bincount, histogram, unique
+ bincount, histogram, unique, searchsorted
Notes
-----