diff options
author | Yash Shah <yashshah0127@gmail.com> | 2016-09-20 15:29:12 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-20 15:29:12 -0700 |
commit | 86e87cb1e56108ce6b5e1faeb2469cbee804e22e (patch) | |
tree | 52e925a05a5c62bbe90388198376c4de392978c6 /numpy/lib | |
parent | 55ece5839d3e9327de7a23ed346a12ec9526899d (diff) | |
download | numpy-86e87cb1e56108ce6b5e1faeb2469cbee804e22e.tar.gz |
DOC: Fix description of isinf in nan_to_num
Minor fix: Change isinf description in "See Also" section of nan_to_num documentation to POSITIVE or negative infinity. Must have been a typo.
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/type_check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/type_check.py b/numpy/lib/type_check.py index 07f4463c5..1658f160c 100644 --- a/numpy/lib/type_check.py +++ b/numpy/lib/type_check.py @@ -342,7 +342,7 @@ def nan_to_num(x): See Also -------- - isinf : Shows which elements are negative or negative infinity. + isinf : Shows which elements are positive or negative infinity. isneginf : Shows which elements are negative infinity. isposinf : Shows which elements are positive infinity. isnan : Shows which elements are Not a Number (NaN). |