diff options
author | Sachin Krishnan T V <sachu92@gmail.com> | 2022-05-23 19:39:14 +0200 |
---|---|---|
committer | Sachin Krishnan T V <sachu92@gmail.com> | 2022-05-23 19:39:14 +0200 |
commit | 4e70f09a4f2679a973f36a666ef4249f465af2d4 (patch) | |
tree | c12a153e886bbcf435e518cf847bc743f0455515 /numpy/testing/_private/utils.py | |
parent | 2d1d3a60d1ce54a0a445453450f46ab998bab75d (diff) | |
download | numpy-4e70f09a4f2679a973f36a666ef4249f465af2d4.tar.gz |
Make double backticks for parameters in docstring
Diffstat (limited to 'numpy/testing/_private/utils.py')
-rw-r--r-- | numpy/testing/_private/utils.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/testing/_private/utils.py b/numpy/testing/_private/utils.py index 656afcb9c..c44815d8c 100644 --- a/numpy/testing/_private/utils.py +++ b/numpy/testing/_private/utils.py @@ -1517,7 +1517,7 @@ 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, + 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. |