diff options
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 |