diff options
author | Joseph Fox-Rabinovitz <madphysicist@users.noreply.github.com> | 2016-04-07 13:41:42 -0400 |
---|---|---|
committer | Joseph Fox-Rabinovitz <madphysicist@users.noreply.github.com> | 2016-04-07 13:41:42 -0400 |
commit | ad3f6dc1d2e4520d4daf3d91d2b347db273bc871 (patch) | |
tree | 4b30df3ad6ec9872906ef5224b53ebb0767ac659 | |
parent | 104501e39e4a68d98ff96bf3a4eae8f17e632609 (diff) | |
download | numpy-ad3f6dc1d2e4520d4daf3d91d2b347db273bc871.tar.gz |
DOC: Removed an extra `:const:`
-rw-r--r-- | doc/source/reference/arrays.indexing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/source/reference/arrays.indexing.rst b/doc/source/reference/arrays.indexing.rst index 50b2492d2..6e9bb9276 100644 --- a/doc/source/reference/arrays.indexing.rst +++ b/doc/source/reference/arrays.indexing.rst @@ -171,7 +171,7 @@ concepts to remember include: .. data:: 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 + create an axis of length one. :const:`newaxis` is an alias for 'None', and 'None' can be used in place of this with the same result. |