diff options
author | Matti Picus <matti.picus@gmail.com> | 2022-01-27 18:42:15 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-27 18:42:15 +0200 |
commit | 80af3a9474955aa27d6fc779e77f19e51be522dc (patch) | |
tree | eae521ff8f32a5fc3042c2127d9c0734ff2bac82 /numpy/ma/extras.py | |
parent | df80af3da6cb7b71a140528db5a8bb11360e5452 (diff) | |
parent | 1dc594cf86a01aac4ef1ab15f7e5397da1fdd82f (diff) | |
download | numpy-80af3a9474955aa27d6fc779e77f19e51be522dc.tar.gz |
Merge pull request #20917 from stephenworsley/patch-2
DOC: fix np.ma.flatnotmasked_contiguous docstring
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r-- | numpy/ma/extras.py | 4 |
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 |