diff options
| author | Sebastian Berg <sebastian@sipsolutions.net> | 2020-10-16 08:21:09 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-16 08:21:09 -0500 |
| commit | b4718373f5412ea0d52ecbe2a3f9bbed824953a0 (patch) | |
| tree | 0df0683ac15b9c827a379cf38b445a3e1bef5b49 | |
| parent | dc11e03f11b9354a84db0848e7ddc277ab779b68 (diff) | |
| parent | 44be9665f7730a80d04c4e114b6c99c54d297b46 (diff) | |
| download | numpy-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.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): |
