diff options
author | Yulv-git <yulvchi@qq.com> | 2022-05-14 21:12:40 +0800 |
---|---|---|
committer | Yulv-git <yulvchi@qq.com> | 2022-05-14 21:12:40 +0800 |
commit | 7332a698c8194c6e680510da086678fe07d9cf9d (patch) | |
tree | 3f7db21397cc5f0e657d29e891b412fa297b7a0a /numpy/ma/extras.py | |
parent | cfbbde8ae720ba4fc653aabe64f9acc3d4c48183 (diff) | |
download | numpy-7332a698c8194c6e680510da086678fe07d9cf9d.tar.gz |
Fix some typos.
Diffstat (limited to 'numpy/ma/extras.py')
-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 641f4746f..d90831b9b 100644 --- a/numpy/ma/extras.py +++ b/numpy/ma/extras.py @@ -1844,7 +1844,7 @@ def notmasked_contiguous(a, axis=None): a = asarray(a) nd = a.ndim if nd > 2: - raise NotImplementedError("Currently limited to atmost 2D array.") + raise NotImplementedError("Currently limited to at most 2D array.") if axis is None or nd == 1: return flatnotmasked_contiguous(a) # |