summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
authorJohannes Schönberger <hannesschoenberger@gmail.com>2013-01-13 12:14:13 +0100
committerJohannes Schönberger <jschoenberger@demuc.de>2013-06-06 21:15:44 +0200
commit27f0781e545b892f9393bad35fec149ed0718864 (patch)
tree1997adabe0a5c7e3d553bba9786fcd636b4e0eaf /numpy/core/numeric.py
parent17c6214af9f2a6b62d425e4386d9be7ae4cf6265 (diff)
downloadnumpy-27f0781e545b892f9393bad35fec149ed0718864.tar.gz
Fix doc string
Diffstat (limited to 'numpy/core/numeric.py')
-rw-r--r--numpy/core/numeric.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/core/numeric.py b/numpy/core/numeric.py
index f33a2b664..9a4146f9e 100644
--- a/numpy/core/numeric.py
+++ b/numpy/core/numeric.py
@@ -259,9 +259,7 @@ def filled(shape, val, dtype=None, order='C'):
def filled_like(a, val, dtype=None, order='K', subok=True):
"""
- Return an array of nans with the same shape and type as a given array.
-
- With default parameters, is equivalent to ``a.copy().fill(np.nan)``.
+ Return a filled array with the same shape and type as a given array.
Parameters
----------