summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorCharles Harris <charlesr.harris@gmail.com>2017-09-23 09:07:46 -0600
committerGitHub <noreply@github.com>2017-09-23 09:07:46 -0600
commit42fcdd0cc381a96d8096af7acda007317d08851f (patch)
tree574ad7f6f5d09206e6b8f41c30d9cb7cdf41b31e /numpy/core/numeric.py
parent687d7b8675f8cbc216c822574eb5bcb92007b412 (diff)
downloadnumpy-42fcdd0cc381a96d8096af7acda007317d08851f.tar.gz
MAINT: Use single backticks when link needed.
[ci skip]
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index e30df8b4e..495bd7fad 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -2452,7 +2452,7 @@ def allclose(a, b, rtol=1.e-5, atol=1.e-8, equal_nan=False):
The comparison of `a` and `b` uses standard broadcasting, which
means that `a` and `b` need not have the same shape in order for
``allclose(a, b)`` to evaluate to True. The same is true for
- ``equal`` but not ``array_equal``.
+ `equal` but not `array_equal`.
Examples
--------