summaryrefslogtreecommitdiff
path: root/numpy/doc/indexing.py
diff options
context:
space:
mode:
authorKirill Balunov <kirill.balunov@gmail.com>2017-02-07 22:25:41 +0300
committerKirill Balunov <kirill.balunov@gmail.com>2017-02-07 22:25:41 +0300
commit6633f69ca250c98fc4126961b657c9df0f8d06ec (patch)
tree0ab37caf2fc1b5e2d08e351f39ae6c311653f2ac /numpy/doc/indexing.py
parent98b3127fa61e09387e1f7cf925acfcb36043e48a (diff)
downloadnumpy-6633f69ca250c98fc4126961b657c9df0f8d06ec.tar.gz
DOC: fix typo in 'Indexing Multi-dimensional arrays'
[ci skip]
Diffstat (limited to 'numpy/doc/indexing.py')
-rw-r--r--numpy/doc/indexing.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/doc/indexing.py b/numpy/doc/indexing.py
index 3e3e95641..39b2c73ed 100644
--- a/numpy/doc/indexing.py
+++ b/numpy/doc/indexing.py
@@ -200,8 +200,8 @@ one index array with y: ::
What results is the construction of a new array where each value of
the index array selects one row from the array being indexed and the
-resultant array has the resulting shape (size of row, number index
-elements).
+resultant array has the resulting shape (number of index elements,
+size of row).
An example of where this may be useful is for a color lookup table
where we want to map the values of an image into RGB triples for