summaryrefslogtreecommitdiff
path: root/numpy/add_newdocs.py
diff options
context:
space:
mode:
authorJoseph Fox-Rabinovitz <madphysicist@users.noreply.github.com>2017-01-31 10:58:49 -0500
committerGitHub <noreply@github.com>2017-01-31 10:58:49 -0500
commitc0d71803d55ef48ba1ff1bd59e4830acc7a9c3f8 (patch)
tree3e32573ce65d724365c9a8151d375a1fd81419f8 /numpy/add_newdocs.py
parentd4f5bea46f328c9378e9548f2a87d0500c95955a (diff)
downloadnumpy-c0d71803d55ef48ba1ff1bd59e4830acc7a9c3f8.tar.gz
DOC: Missing backticks
Came across this in the online docs
Diffstat (limited to 'numpy/add_newdocs.py')
-rw-r--r--numpy/add_newdocs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/add_newdocs.py b/numpy/add_newdocs.py
index 1d4bf4511..abc4f3f22 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