diff options
author | Mukulika <mukulikapahari@gmail.com> | 2021-10-06 15:30:15 +0530 |
---|---|---|
committer | Mukulika <mukulikapahari@gmail.com> | 2021-10-28 22:06:05 +0530 |
commit | 7f6e524ebb6ac9beb97e5504b133aac359336236 (patch) | |
tree | df882579a752a68ab2e8daf9839c68942829ed21 /doc/source | |
parent | dbf3a4bf7ba3cb10f3cf0aa28a2413e1f06bafb1 (diff) | |
download | numpy-7f6e524ebb6ac9beb97e5504b133aac359336236.tar.gz |
DOC: Removed less used term counts
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/user/basics.copies.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/user/basics.copies.rst b/doc/source/user/basics.copies.rst index 50c6ea774..9cd7e2816 100644 --- a/doc/source/user/basics.copies.rst +++ b/doc/source/user/basics.copies.rst @@ -63,8 +63,8 @@ the original array while for a copy it returns ``None``. Indexing operations =================== -Views are created when elements can be addressed with offsets, strides, -and counts in the original array. Hence, basic indexing always creates views. +Views are created when elements can be addressed with offsets and strides +in the original array. Hence, basic indexing always creates views. For example:: >>> x = np.arange(10) |