diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-01-31 13:33:23 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-31 13:33:23 -0700 |
commit | bd0fe0aa2159fa1d4570b0c524097b7492f239bf (patch) | |
tree | 5f4fddebd8159d630657a9168e1d37fe177d0738 | |
parent | ddb12e3328bc16175afb6996e0a69b5a9508298a (diff) | |
parent | 05e8eb359ffa087d44f88cb2246090045185e1de (diff) | |
download | numpy-bd0fe0aa2159fa1d4570b0c524097b7492f239bf.tar.gz |
Merge pull request #8551 from madphysicist/patch-1
DOC: Missing backticks
-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 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 ----- |