summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorMatti Picus <matti.picus@gmail.com>2022-01-27 18:42:15 +0200
committerGitHub <noreply@github.com>2022-01-27 18:42:15 +0200
commit80af3a9474955aa27d6fc779e77f19e51be522dc (patch)
treeeae521ff8f32a5fc3042c2127d9c0734ff2bac82 /numpy
parentdf80af3da6cb7b71a140528db5a8bb11360e5452 (diff)
parent1dc594cf86a01aac4ef1ab15f7e5397da1fdd82f (diff)
downloadnumpy-80af3a9474955aa27d6fc779e77f19e51be522dc.tar.gz
Merge pull request #20917 from stephenworsley/patch-2
DOC: fix np.ma.flatnotmasked_contiguous docstring
Diffstat (limited to 'numpy')
-rw-r--r--numpy/ma/extras.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py
index 56da5a7e5..7f3e25900 100644
--- a/numpy/ma/extras.py
+++ b/numpy/ma/extras.py
@@ -1628,11 +1628,11 @@ def notmasked_edges(a, axis=None):
def flatnotmasked_contiguous(a):
"""
- Find contiguous unmasked data in a masked array along the given axis.
+ Find contiguous unmasked data in a masked array.
Parameters
----------
- a : narray
+ a : array_like
The input array.
Returns