diff options
author | Charles Harris <charlesr.harris@gmail.com> | 2014-04-20 18:08:27 -0600 |
---|---|---|
committer | Charles Harris <charlesr.harris@gmail.com> | 2014-04-20 18:08:27 -0600 |
commit | e8a9e84a34ca9a45acfde938298f7e5dac609d75 (patch) | |
tree | 76eeebaf07887c2ef0cb71c20c248a075dfdf6d6 /doc/source | |
parent | 61c699e5e1bf8b4b85ffd72a99691138d5674b50 (diff) | |
parent | ac69505acabb347b5afe18f43a6d7a2a8d94bb52 (diff) | |
download | numpy-e8a9e84a34ca9a45acfde938298f7e5dac609d75.tar.gz |
Merge pull request #4621 from jess010/newaxis-doc
update arrays.indexing.rst for 'newaxis' description
Diffstat (limited to 'doc/source')
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index e759b6ff8..d319b5d80 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -170,9 +170,9 @@ concepts to remember include: .. data:: newaxis - The :const:`newaxis` object can be used in all slicing operations - as discussed above. :const:`None` can also be used instead of - :const:`newaxis`. + The :const:`newaxis` object can be used in all slicing operations to + create an axis of length one. :const: :const:`newaxis` is an alias for + 'None', and 'None' can be used in place of this with the same result. Advanced indexing |