Skip to content

Commit

Permalink
MAINT: Typo in arrays.indexing.rst Issue#6670
Browse files Browse the repository at this point in the history
  • Loading branch information
floatingpointstack committed Nov 12, 2015
1 parent 1d51142 commit 296b0b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/source/reference/arrays.indexing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ basic slicing that returns a :term:`view`).
fundamentally different than ``x[(1,2,3)]``. The latter is
equivalent to ``x[1,2,3]`` which will trigger basic selection while
the former will trigger advanced indexing. Be sure to understand
why this is occurs.
why this occurs.

Also recognize that ``x[[1,2,3]]`` will trigger advanced indexing,
whereas ``x[[1,2,slice(None)]]`` will trigger basic slicing.
Expand Down

0 comments on commit 296b0b7

Please sign in to comment.