summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSebastian Berg <sebastian@sipsolutions.net>2020-10-16 08:21:09 -0500
committerGitHub <noreply@github.com>2020-10-16 08:21:09 -0500
commitb4718373f5412ea0d52ecbe2a3f9bbed824953a0 (patch)
tree0df0683ac15b9c827a379cf38b445a3e1bef5b49
parentdc11e03f11b9354a84db0848e7ddc277ab779b68 (diff)
parent44be9665f7730a80d04c4e114b6c99c54d297b46 (diff)
downloadnumpy-b4718373f5412ea0d52ecbe2a3f9bbed824953a0.tar.gz
Merge pull request #17576 from bderrett/indexing-docs-typo-fix
DOC: Fix Boolean array indexing typo
-rw-r--r--doc/source/reference/arrays.indexing.rst2
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):