summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTyler Reddy <tyler.je.reddy@gmail.com>2018-10-20 13:11:43 -0700
committerGitHub <noreply@github.com>2018-10-20 13:11:43 -0700
commiteb40e161e2e593762da9c77858343e3720351ce7 (patch)
tree3acc706000ad9d6744116f0ea2dfcab9c824f1be
parent2be154408c6a088a296da3cad274473ea7d03317 (diff)
parent8f246ea38d3db090b3937951506c50d015fea82e (diff)
downloadnumpy-eb40e161e2e593762da9c77858343e3720351ce7.tar.gz
Merge pull request #12229 from liwt31/fix_typo
MAINT: Fix typo in comment
-rw-r--r--numpy/core/overrides.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/core/overrides.py b/numpy/core/overrides.py
index 77ee9e6ee..5be60cd29 100644
--- a/numpy/core/overrides.py
+++ b/numpy/core/overrides.py
@@ -71,8 +71,8 @@ def array_function_implementation_or_override(
Function that implements the operation on NumPy array without
overrides when called like ``implementation(*args, **kwargs)``.
public_api : function
- Function exposed by NumPy's public API riginally called like
- ``public_api(*args, **kwargs`` on which arguments are now being
+ Function exposed by NumPy's public API originally called like
+ ``public_api(*args, **kwargs)`` on which arguments are now being
checked.
relevant_args : iterable
Iterable of arguments to check for __array_function__ methods.