diff options
author | takanori-pskq <takanori17h@gmail.com> | 2020-11-05 05:49:47 +0000 |
---|---|---|
committer | takanori-pskq <takanori17h@gmail.com> | 2020-11-05 05:49:47 +0000 |
commit | e028b1b86f46e9334749f0cb5a102e00715b6442 (patch) | |
tree | 271a27d0293e8396a003251bfec079ca4bac1b6c /numpy/ma | |
parent | 3904e990f7027fb9139a52e844376b82e6c718e4 (diff) | |
download | numpy-e028b1b86f46e9334749f0cb5a102e00715b6442.tar.gz |
DOC: Fixup
Diffstat (limited to 'numpy/ma')
-rw-r--r-- | numpy/ma/core.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index ddd45f980..89294e403 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -3834,7 +3834,7 @@ class MaskedArray(ndarray): """ Return `a` where condition is ``True``. - If condition is a `MaskedArray`, missing values are considered + If condition is a `~ma.MaskedArray`, missing values are considered as ``False``. Parameters @@ -3853,7 +3853,7 @@ class MaskedArray(ndarray): Returns ------- result : MaskedArray - A :class:`MaskedArray` object. + A :class:`~ma.MaskedArray` object. Notes ----- |