diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 18:07:06 -0400 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2015-06-21 18:07:06 -0400 |
commit | f0c898b6017cc011561d7f1e611e08283ecfdb08 (patch) | |
tree | 4406a2c8d1cad085eeacbd09be3947a9bf97aa2e /doc | |
parent | 23e6b74a74857136a0fd2919f4d37da370d55ec4 (diff) | |
parent | 4e5545f0bcc654fb0c6752dcf72120e6e7340d28 (diff) | |
download | numpy-f0c898b6017cc011561d7f1e611e08283ecfdb08.tar.gz |
Merge pull request #5490 from charris/cleanup-gh-4986
DOC: Update indexing docs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index 2eb07c4e0..228e9a8d4 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -357,11 +357,10 @@ faster when ``obj.shape == x.shape``. If ``obj.ndim == x.ndim``, ``x[obj]`` returns a 1-dimensional array filled with the elements of *x* corresponding to the :const:`True` -values of *obj*. -The search order will be C-style (last index varies the fastest). If -*obj* has :const:`True` values at entries that are outside of the -bounds of *x*, then an index error will be raised. If *obj* is smaller -than *x* it is identical to filling it with :const:`False`. +values of *obj*. The search order will be :term:`row-major`, +C-style. If *obj* has :const:`True` values at entries that are outside +of the bounds of *x*, then an index error will be raised. If *obj* is +smaller than *x* it is identical to filling it with :const:`False`. .. admonition:: Example |