diff options
author | Ben Derrett <ben.derrett@gmail.com> | 2020-10-16 13:09:47 +0100 |
---|---|---|
committer | Ben Derrett <ben.derrett@gmail.com> | 2020-10-16 13:09:47 +0100 |
commit | 44be9665f7730a80d04c4e114b6c99c54d297b46 (patch) | |
tree | 0df0683ac15b9c827a379cf38b445a3e1bef5b49 /doc/source | |
parent | dc11e03f11b9354a84db0848e7ddc277ab779b68 (diff) | |
download | numpy-44be9665f7730a80d04c4e114b6c99c54d297b46.tar.gz |
DOC: Fix Boolean array indexing typo
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index b2a9f1d21..9f82875ea 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -453,7 +453,7 @@ also supports boolean arrays and will work without any surprises. array([[ 3, 5], [ 9, 11]]) - Without the ``np.ix_`` call or only the diagonal elements would be + Without the ``np.ix_`` call, only the diagonal elements would be selected. Or without ``np.ix_`` (compare the integer array examples): |