diff options
Diffstat (limited to 'numpy/lib')
-rw-r--r-- | numpy/lib/ufunclike.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/ufunclike.py b/numpy/lib/ufunclike.py index 0d309e0e6..6c6f0a056 100644 --- a/numpy/lib/ufunclike.py +++ b/numpy/lib/ufunclike.py @@ -118,7 +118,7 @@ def isposinf(x, out=None): Errors result if the second argument is also supplied when x is a scalar input, if first and second arguments have different shapes, or if the - first argument as complex values + first argument has complex values Examples -------- @@ -184,7 +184,7 @@ def isneginf(x, out=None): Errors result if the second argument is also supplied when x is a scalar input, if first and second arguments have different shapes, or if the - first argument as complex values. + first argument has complex values. Examples -------- |