summaryrefslogtreecommitdiff
path: root/numpy/testing/overrides.py
diff options
context:
space:
mode:
authorIkko Eltociear Ashimine <eltociear@gmail.com>2023-02-10 19:05:32 +0900
committerGitHub <noreply@github.com>2023-02-10 19:05:32 +0900
commit8710fa6cb2144f100b250e6181d75ac711c64610 (patch)
tree1ef3230231bb6b795aec99b412bb0c8d0271c275 /numpy/testing/overrides.py
parentbe52f19259d47cd27095e186a7974710c60169ee (diff)
downloadnumpy-8710fa6cb2144f100b250e6181d75ac711c64610.tar.gz
MAINT: fix typo in overrides.py
overriden -> overridden
Diffstat (limited to 'numpy/testing/overrides.py')
-rw-r--r--numpy/testing/overrides.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/testing/overrides.py b/numpy/testing/overrides.py
index e6a36b7b9..781f7d100 100644
--- a/numpy/testing/overrides.py
+++ b/numpy/testing/overrides.py
@@ -25,7 +25,7 @@ def get_overridable_numpy_ufuncs():
def allows_array_ufunc_override(func):
- """Determine if a function can be overriden via `__array_ufunc__`
+ """Determine if a function can be overridden via `__array_ufunc__`
Parameters
----------
@@ -67,7 +67,7 @@ def get_overridable_numpy_array_functions():
return _array_functions.copy()
def allows_array_function_override(func):
- """Determine if a Numpy function can be overriden via `__array_function__`
+ """Determine if a Numpy function can be overridden via `__array_function__`
Parameters
----------