diff options
author | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2021-01-31 08:33:32 -0800 |
---|---|---|
committer | Matthias Bussonnier <bussonniermatthias@gmail.com> | 2021-01-31 08:42:13 -0800 |
commit | 71ac6b78a14206a8e3b8f5f7e55d0af8ef6b4bf5 (patch) | |
tree | b794dae635c330f230d39547da5e918f3600746f /numpy/lib/nanfunctions.py | |
parent | de8bb00dbf007b65095e858ff2490b8df39b9047 (diff) | |
download | numpy-71ac6b78a14206a8e3b8f5f7e55d0af8ef6b4bf5.tar.gz |
DOC: Nupydoc format space before `:` in Parameters
Missing `s` in two spellings.
Diffstat (limited to 'numpy/lib/nanfunctions.py')
-rw-r--r-- | numpy/lib/nanfunctions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/lib/nanfunctions.py b/numpy/lib/nanfunctions.py index 409016adb..a02ad779f 100644 --- a/numpy/lib/nanfunctions.py +++ b/numpy/lib/nanfunctions.py @@ -613,7 +613,7 @@ def nansum(a, axis=None, dtype=None, out=None, keepdims=np._NoValue): -------- numpy.sum : Sum across array propagating NaNs. isnan : Show which elements are NaN. - isfinite: Show which elements are not NaN or +/-inf. + isfinite : Show which elements are not NaN or +/-inf. Notes ----- |