summaryrefslogtreecommitdiff
path: root/doc/source/reference
diff options
context:
space:
mode:
authorJaime <jaime.frio@gmail.com>2015-10-19 19:24:04 -0700
committerJaime <jaime.frio@gmail.com>2015-10-19 19:24:04 -0700
commit27459b2a28c911549d4222eed46ef871fca0ef77 (patch)
tree4edc8fef9fe878f6cc0ecd3a7d0f5b713c1fd74e /doc/source/reference
parent17146b2a873e835630ad58d00b73e97ba1fdb214 (diff)
parentb57edaf29a731837f4b39cb68f21693fdccb940f (diff)
downloadnumpy-27459b2a28c911549d4222eed46ef871fca0ef77.tar.gz
Merge pull request #6528 from jaimefrio/fix_typo
DOC: fixed typo in arrays.classes.rst
Diffstat (limited to 'doc/source/reference')
-rw-r--r--doc/source/reference/arrays.classes.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.classes.rst b/doc/source/reference/arrays.classes.rst
index 1fa84c6c4..5716f4562 100644
--- a/doc/source/reference/arrays.classes.rst
+++ b/doc/source/reference/arrays.classes.rst
@@ -24,7 +24,7 @@ subclass of an ndarray, then :func:`asanyarray` can be used to allow
subclasses to propagate more cleanly through your subroutine. In
principal a subclass could redefine any aspect of the array and
therefore, under strict guidelines, :func:`asanyarray` would rarely be
-useful. However, most subclasses of the arrayobject will not
+useful. However, most subclasses of the array object will not
redefine certain aspects of the array object such as the buffer
interface, or the attributes of the array. One important example,
however, of why your subroutine may not be able to handle an arbitrary
@@ -47,10 +47,10 @@ Numpy provides several hooks that classes can customize:
override behavior of Numpy's ufuncs. This works quite similarly to
Python's ``__mul__`` and other binary operation routines.
- - *ufunc* is the ufunc object that was called.
+ - *ufunc* is the ufunc object that was called.
- *method* is a string indicating which Ufunc method was called
(one of ``"__call__"``, ``"reduce"``, ``"reduceat"``,
- ``"accumulate"``, ``"outer"``, ``"inner"``).
+ ``"accumulate"``, ``"outer"``, ``"inner"``).
- *i* is the index of *self* in *inputs*.
- *inputs* is a tuple of the input arguments to the ``ufunc``
- *kwargs* is a dictionary containing the optional input arguments