diff options
author | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-01 22:53:19 -0800 |
---|---|---|
committer | Robert McGibbon <rmcgibbo@gmail.com> | 2015-03-02 12:00:18 -0800 |
commit | 6ca778d275ade854cfc81a6a975230c4ccd9402c (patch) | |
tree | bbabe2a612cb69b4fd6fa33926383804a11e0c33 /numpy/testing/utils.py | |
parent | fba3140f31e67487666529e66241047517a72bcb (diff) | |
download | numpy-6ca778d275ade854cfc81a6a975230c4ccd9402c.tar.gz |
DOC: Reconcile docstrings and function signatures where they disagree
Fixed typos in docstrings were updated for functions where the parameter
names in the docstring didn't match the function signature.
Diffstat (limited to 'numpy/testing/utils.py')
-rw-r--r-- | numpy/testing/utils.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/numpy/testing/utils.py b/numpy/testing/utils.py index 1051288c2..0971ebe94 100644 --- a/numpy/testing/utils.py +++ b/numpy/testing/utils.py @@ -1413,6 +1413,8 @@ def nulp_diff(x, y, dtype=None): first input array y : array_like second input array + dtype : dtype, optional + Data-type to convert `x` and `y` to if given. Default is None. Returns ------- |