diff options
author | Peter Andreas Entschev <peter@entschev.com> | 2020-11-13 22:51:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-13 22:51:02 +0100 |
commit | 27e67ce1d2cdf85f29e05b88131731b93673e57c (patch) | |
tree | aeb0d8a48458ec791f9f1325b656d0ff954faa61 /doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst | |
parent | fb2c9c8e7fee1248fe489f6cc520b8703f70f2da (diff) | |
download | numpy-27e67ce1d2cdf85f29e05b88131731b93673e57c.tar.gz |
NEP: NEP-35 phrasing fix
Co-authored-by: Sebastian Berg <sebastian@sipsolutions.net>
Diffstat (limited to 'doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst')
-rw-r--r-- | doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst b/doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst index 6d1f8bf27..5ec01081a 100644 --- a/doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst +++ b/doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst @@ -351,7 +351,7 @@ backend type: type(np.asarray([1, 2, 3], like=da.array(cp.array(()))).compute()) Note how above the array is backed by ``chunktype=cupy.ndarray``, and the -resulting array after computing it is also a ``cupy.ndarray``. If Dask does +resulting array after computing it is also a ``cupy.ndarray``. If Dask did not use the ``like=`` argument via the ``self`` attribute from ``__array_function__``, the example above would be backed by ``numpy.ndarray`` instead: |