diff options
author | Stephan Hoyer <shoyer@google.com> | 2017-05-01 21:30:21 -0700 |
---|---|---|
committer | Stephan Hoyer <shoyer@google.com> | 2017-05-01 21:30:21 -0700 |
commit | 9e5786bce33e78cd7b9dc4ffb68dd173f31e0a33 (patch) | |
tree | dfc95aa3da29e8e3e9daf74a76b733f858ef843f /doc/neps | |
parent | d9bc680638b054d8d0401f5e3804e1ed75c20479 (diff) | |
download | numpy-9e5786bce33e78cd7b9dc4ffb68dd173f31e0a33.tar.gz |
DOC: simply -> simplify
Diffstat (limited to 'doc/neps')
-rw-r--r-- | doc/neps/ufunc-overrides.rst | 2 |
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. |