summaryrefslogtreecommitdiff
path: root/numpy/core/numeric.py
diff options
context:
space:
mode:
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
----------