summaryrefslogtreecommitdiff
path: root/doc/neps
diff options
context:
space:
mode:
authorStephan Hoyer <shoyer@google.com>2017-05-01 21:30:21 -0700
committerStephan Hoyer <shoyer@google.com>2017-05-01 21:30:21 -0700
commit9e5786bce33e78cd7b9dc4ffb68dd173f31e0a33 (patch)
treedfc95aa3da29e8e3e9daf74a76b733f858ef843f /doc/neps
parentd9bc680638b054d8d0401f5e3804e1ed75c20479 (diff)
downloadnumpy-9e5786bce33e78cd7b9dc4ffb68dd173f31e0a33.tar.gz
DOC: simply -> simplify
Diffstat (limited to 'doc/neps')
-rw-r--r--doc/neps/ufunc-overrides.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/neps/ufunc-overrides.rst b/doc/neps/ufunc-overrides.rst
index a112e10c2..82b297411 100644
--- a/doc/neps/ufunc-overrides.rst
+++ b/doc/neps/ufunc-overrides.rst
@@ -629,7 +629,7 @@ implementation for :class:`ndarray` itself. The opt-out mechanism requires
disabling Ufuncs so a class cannot define a Ufuncs to return a different
result than the corresponding binary operations (i.e., if
``np.add(x, y)`` is defined, it should match ``x + y``). Our goal was to
-simply the dispatch logic for binary operations with NumPy arrays
+simplify the dispatch logic for binary operations with NumPy arrays
as much as possible, by making it possible to use Python's dispatch rules
or NumPy's dispatch rules, but not some mixture of both at the same time.