summaryrefslogtreecommitdiff
path: root/numpy/doc/subclassing.py
diff options
context:
space:
mode:
authorDongjoon Hyun <dongjoon@apache.org>2016-02-21 11:33:41 -0800
committerDongjoon Hyun <dongjoon@apache.org>2016-02-25 11:37:32 -0800
commit2556b9ff1ae621e311053bd5f2b34edb86a8cb68 (patch)
treeee25cd0a9f3d40a4292b342ce664f1c417d0deb2 /numpy/doc/subclassing.py
parent89d95a0660ffd5890916edb78a6d4a9ccb5b3ad0 (diff)
downloadnumpy-2556b9ff1ae621e311053bd5f2b34edb86a8cb68.tar.gz
DOC: Fix more typos in docs and comments.
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 85327feab..1dd73d4ce 100644
--- a/numpy/doc/subclassing.py
+++ b/numpy/doc/subclassing.py
@@ -231,7 +231,7 @@ where our object creation housekeeping usually goes.
* For view casting and new-from-template, the equivalent of
``ndarray.__new__(MySubClass,...`` is called, at the C level.
-The arguments that ``__array_finalize__`` recieves differ for the three
+The arguments that ``__array_finalize__`` receives differ for the three
methods of instance creation above.
The following code allows us to look at the call sequences and arguments: