summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
diff options
context:
space:
mode:
authorYulv-git <yulvchi@qq.com>2022-05-14 21:12:40 +0800
committerYulv-git <yulvchi@qq.com>2022-05-14 21:12:40 +0800
commit7332a698c8194c6e680510da086678fe07d9cf9d (patch)
tree3f7db21397cc5f0e657d29e891b412fa297b7a0a /numpy/ma/extras.py
parentcfbbde8ae720ba4fc653aabe64f9acc3d4c48183 (diff)
downloadnumpy-7332a698c8194c6e680510da086678fe07d9cf9d.tar.gz
Fix some typos.
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r--numpy/ma/extras.py2
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)
#