diff options
| author | stephenworsley <49274989+stephenworsley@users.noreply.github.com> | 2022-01-27 14:18:06 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-27 14:18:06 +0000 |
| commit | 20ebea86de438721ade63fb32f08916c2ce4b9cb (patch) | |
| tree | b0a27892d53021e5ef23c962cf78247e969a1536 | |
| parent | df80af3da6cb7b71a140528db5a8bb11360e5452 (diff) | |
| download | numpy-20ebea86de438721ade63fb32f08916c2ce4b9cb.tar.gz | |
DOC: fix np.ma.flatnotmasked_contiguous docstring
The first line of the docstring for `flatnotmasked_contiguous` was identical to that in `notmasked_contiguous` and refered to a given axis despite the fact that no axis is given as an argument.
| -rw-r--r-- | numpy/ma/extras.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py index 56da5a7e5..a40b5f009 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -1628,7 +1628,7 @@ 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 ---------- |
