summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorJohannes Schönberger <hannesschoenberger@gmail.com>2013-01-01 10:13:54 +0100
committerJohannes Schönberger <jschoenberger@demuc.de>2013-06-06 21:15:14 +0200
commit25f9d8cb92d5624409f2f2640ac637aedd7ebb25 (patch)
treeac3eb6aa449e18a50040825d4151c2c079c4133d /numpy/core/numeric.py
parent0fe4df2726d76b2093aa5d26f0ca839ef47c3770 (diff)
downloadnumpy-25f9d8cb92d5624409f2f2640ac637aedd7ebb25.tar.gz
Fix typo in doc string
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index 5a38e5872..abfa8fd24 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -235,7 +235,7 @@ def nans(shape, dtype=None, order='C'):
"""
Return a new array of given shape and type, filled with nans.
- Note that only floating point numbers can represent non-numers as defined
+ Note that only floating point numbers can represent non-numbers as defined
in IEEE 754-1985.
Please refer to the documentation for `zeros` for further details.
@@ -263,7 +263,7 @@ def nans_like(a, dtype=None, order='K', subok=True):
"""
Return an array of nans with the same shape and type as a given array.
- Note that only floating point numbers can represent non-numers as defined
+ Note that only floating point numbers can represent non-numbers as defined
in IEEE 754-1985.
With default parameters, is equivalent to ``a.copy().fill(np.nan)``.
@@ -309,7 +309,7 @@ def infs(shape, dtype=None, order='C'):
"""
Return a new array of given shape and type, filled with infs.
- Note that only floating point numbers can represent non-numers as defined
+ Note that only floating point numbers can represent non-numbers as defined
in IEEE 754-1985.
Please refer to the documentation for `zeros` for further details.
@@ -337,7 +337,7 @@ def infs_like(a, dtype=None, order='K', subok=True):
"""
Return an array of infs with the same shape and type as a given array.
- Note that only floating point numbers can represent non-numers as defined
+ Note that only floating point numbers can represent non-numbers as defined
in IEEE 754-1985.
With default parameters, is equivalent to ``a.copy().fill(np.inf)``.