summaryrefslogtreecommitdiff
path: root/numpy/doc/subclassing.py
diff options
context:
space:
mode:
authorluz.paz <luzpaz@users.noreply.github.com>2018-01-04 20:48:10 -0500
committerluz.paz <luzpaz@users.noreply.github.com>2018-01-04 20:48:10 -0500
commit7cb22f954ed50217f7eb483f4fbdb67953f6482d (patch)
tree17a28979c0abae1b41b5760df4621bc964c8f948 /numpy/doc/subclassing.py
parent9a902b775c12be99708a0a33a244ace3521855de (diff)
downloadnumpy-7cb22f954ed50217f7eb483f4fbdb67953f6482d.tar.gz
More misc. typos
Found via `codespell`
Diffstat (limited to 'numpy/doc/subclassing.py')
-rw-r--r--numpy/doc/subclassing.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/doc/subclassing.py b/numpy/doc/subclassing.py
index c34278868..467e31cea 100644
--- a/numpy/doc/subclassing.py
+++ b/numpy/doc/subclassing.py
@@ -441,7 +441,7 @@ The signature of ``__array_ufunc__`` is::
function. This includes any ``out`` arguments, which are always
contained in a tuple.
-A typical implementation would convert any inputs or ouputs that are
+A typical implementation would convert any inputs or outputs that are
instances of one's own class, pass everything on to a superclass using
``super()``, and finally return the results after possible
back-conversion. An example, taken from the test case