diff options
author | Ikko Eltociear Ashimine <eltociear@gmail.com> | 2023-02-10 19:05:32 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 19:05:32 +0900 |
commit | 8710fa6cb2144f100b250e6181d75ac711c64610 (patch) | |
tree | 1ef3230231bb6b795aec99b412bb0c8d0271c275 /numpy/testing/overrides.py | |
parent | be52f19259d47cd27095e186a7974710c60169ee (diff) | |
download | numpy-8710fa6cb2144f100b250e6181d75ac711c64610.tar.gz |
MAINT: fix typo in overrides.py
overriden -> overridden
Diffstat (limited to 'numpy/testing/overrides.py')
-rw-r--r-- | numpy/testing/overrides.py | 4 |
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 ---------- |