summaryrefslogtreecommitdiff
path: root/numpy/testing/_private/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r--numpy/testing/_private/utils.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py
index c44815d8c..e85eda3d7 100644
--- a/numpy/testing/_private/utils.py
+++ b/numpy/testing/_private/utils.py
@@ -1517,9 +1517,9 @@ def assert_allclose(actual, desired, rtol=1e-7, atol=0, equal_nan=True,
Notes
-----
- When one of ``actual`` and ``desired`` is a scalar and the other is array_like,
- the function checks that each element of the array_like object is equal to
- the scalar.
+ When one of ``actual`` and ``desired`` is a scalar and the other is
+ array_like, the function checks that each element of the array_like
+ object is equal to the scalar.
Examples
--------