diff options
author | Peter Andreas Entschev <peter@entschev.com> | 2020-08-19 18:57:21 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-19 18:57:21 +0200 |
commit | 67c973306a445846a3c14e0cf66608be9d89a093 (patch) | |
tree | 8b035f916d697a7f1d2ecbea9ea6e8eb89c2386b /doc/neps | |
parent | 57d6bab5c5fa7c0e6b4830988b855fb28f257649 (diff) | |
download | numpy-67c973306a445846a3c14e0cf66608be9d89a093.tar.gz |
Update doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst
Co-authored-by: Eric Wieser <wieser.eric@gmail.com>
Diffstat (limited to 'doc/neps')
-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 615039442..c5a266dfe 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 @@ -128,7 +128,7 @@ many smaller problems and merges their results to reach the final result. To break the problem down into smaller ones, Dask also breaks arrays into smaller arrays that it calls "chunks". A Dask array can thus consist of one or more chunks and they may be of different types. However, in the context of -``__array_function__``, Dask only allows chunks of the same type, for example, +``__array_function__``, Dask only allows chunks of the same type; for example, a Dask array can be formed of several NumPy arrays or several CuPy arrays, but not a mix of both. |