diff options
author | Martin Zacho <reach@martinzacho.com> | 2022-08-28 18:08:07 +0200 |
---|---|---|
committer | Martin Zacho <reach@martinzacho.com> | 2022-08-28 18:08:07 +0200 |
commit | e070aeae713a73439d82a103fea558f5ef8dd628 (patch) | |
tree | bdbab3d44642c7036bce6245e15e41793f813e9f /doc/source/user | |
parent | 50a74fb65fc752e77a2f9e9e2b7227629c2ba953 (diff) | |
download | numpy-e070aeae713a73439d82a103fea558f5ef8dd628.tar.gz |
docs: Fix small grammar slip
Diffstat (limited to 'doc/source/user')
-rw-r--r-- | doc/source/user/basics.indexing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/user/basics.indexing.rst b/doc/source/user/basics.indexing.rst index 94bab061a..088d280a2 100644 --- a/doc/source/user/basics.indexing.rst +++ b/doc/source/user/basics.indexing.rst @@ -208,7 +208,7 @@ concepts to remember include: - You may use slicing to set values in the array, but (unlike lists) you can never grow the array. The size of the value to be set in - ``x[obj] = value`` must be (broadcastable) to the same shape as + ``x[obj] = value`` must be (broadcastable to) the same shape as ``x[obj]``. - A slicing tuple can always be constructed as *obj* |