diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2017-02-09 19:58:15 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-09 19:58:15 -0700 |
commit | b52be49a702862a44f18237c5a9a6c7f5173ddab (patch) | |
tree | 33283a7a9ef8d0261dd8ca41dc0dcba20902ff94 /numpy/doc/indexing.py | |
parent | 04bfa6233473e3ffb7fb3fe2e9c1623d63f62cad (diff) | |
parent | 40ce834f854827b39c98a6e32d061195edad6662 (diff) | |
download | numpy-b52be49a702862a44f18237c5a9a6c7f5173ddab.tar.gz |
Merge pull request #8575 from godaygo/doc-typos-1
DOC: fix several typos #8537.
Diffstat (limited to 'numpy/doc/indexing.py')
-rw-r--r-- | numpy/doc/indexing.py | 4 |
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 |