diff options
author | Peter Andreas Entschev <peter@entschev.com> | 2020-08-19 10:50:15 -0700 |
---|---|---|
committer | Peter Andreas Entschev <peter@entschev.com> | 2020-08-19 10:50:15 -0700 |
commit | 3d527eacf5064b4ab7dcd4c20de952fe37d931d5 (patch) | |
tree | a11afeda307418a8fd6be85496cd846ecfe53235 /doc/neps | |
parent | 2e30534564aaf49cb0a12baf6b721b7b31402647 (diff) | |
download | numpy-3d527eacf5064b4ab7dcd4c20de952fe37d931d5.tar.gz |
NEP: Improve grammar on NEP-35 reference to Dask's objects
Diffstat (limited to 'doc/neps')
-rw-r--r-- | doc/neps/nep-0035-array-creation-dispatch-with-array-function.rst | 8 |
1 files changed, 4 insertions, 4 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 7acb396f6..d7d670839 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 @@ -118,10 +118,10 @@ conversion, ultimately raising a Now we should look at how a library like Dask could benefit from ``like=``. Before we understand that, it's important to understand a bit about Dask basics -and ensures correctness with ``__array_function__``. Note that Dask can compute -different sorts of objects, like dataframes, bags and arrays, here we will focus -strictly on arrays, which are the objects we can use ``__array_function__`` -with. +and ensures correctness with ``__array_function__``. Note that Dask can perform +computations on different sorts of objects, like dataframes, bags and arrays, +here we will focus strictly on arrays, which are the objects we can use +``__array_function__`` with. Dask uses a graph computing model, meaning it breaks down a large problem in many smaller problems and merges their results to reach the final result. To |