diff options
author | Sebastian Berg <sebastian@sipsolutions.net> | 2019-07-02 12:55:19 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-02 12:55:19 -0700 |
commit | f751336b0261fb86b15f949251f31314e08ecc00 (patch) | |
tree | 645be14dc2e09cc919b1084112954b7975a2dddc /numpy | |
parent | c088c7cd66eb4c69d6b8a91e6a9178b8848ad428 (diff) | |
parent | 88c2cb10958de6a063a2f42f81cf8e2eb4dca080 (diff) | |
download | numpy-f751336b0261fb86b15f949251f31314e08ecc00.tar.gz |
Merge pull request #13895 from MSeifert04/fix-typo-make-mask
DOC: Fix typo in "make_mask" documentation
Diffstat (limited to 'numpy')
-rw-r--r-- | numpy/ma/core.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/core.py b/numpy/ma/core.py index a6b04ed65..20db2d655 100644 --- a/numpy/ma/core.py +++ b/numpy/ma/core.py @@ -1554,7 +1554,7 @@ def make_mask(m, copy=False, shrink=True, dtype=MaskType): Return `m` as a boolean mask, creating a copy if necessary or requested. The function can accept any sequence that is convertible to integers, or ``nomask``. Does not require that contents must be 0s and 1s, values - of 0 are interepreted as False, everything else as True. + of 0 are interpreted as False, everything else as True. Parameters ---------- |