diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2022-01-12 20:12:35 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-12 20:12:35 -0700 |
commit | 813a0c11186ded0b5caeb853fd2b22fb9addd511 (patch) | |
tree | 48544dd4971593a63098a105ae26e59c8482129f /numpy/_globals.py | |
parent | f98c60a035b007680fe811eeed3b6326961ccff5 (diff) | |
parent | 76b1ba156e792187f133db8e8bdd968a3fdbe5be (diff) | |
download | numpy-813a0c11186ded0b5caeb853fd2b22fb9addd511.tar.gz |
Merge pull request #20784 from DimitriPapadopoulos/codespell
MAINT, DOC: fix new typos detected by codespell
Diffstat (limited to 'numpy/_globals.py')
-rw-r--r-- | numpy/_globals.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/_globals.py b/numpy/_globals.py index c88874725..593d90e42 100644 --- a/numpy/_globals.py +++ b/numpy/_globals.py @@ -116,7 +116,7 @@ class _CopyMode(enum.Enum): NEVER = 2 def __bool__(self): - # For backwards compatiblity + # For backwards compatibility if self == _CopyMode.ALWAYS: return True |