summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/reference/arrays.ndarray.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/reference/arrays.ndarray.rst b/doc/source/reference/arrays.ndarray.rst
index 14bac443d..0f5fb92d7 100644
--- a/doc/source/reference/arrays.ndarray.rst
+++ b/doc/source/reference/arrays.ndarray.rst
@@ -45,8 +45,8 @@ objects implementing the :class:`buffer` or :ref:`array
The array can be indexed using Python container-like syntax:
- >>> x[1,2] # i.e., the element of x in the *second* row, *third*
- column, namely, 6.
+ >>> # The element of x in the *second* row, *third* column, namely, 6.
+ >>> x[1, 2]
For example :ref:`slicing <arrays.indexing>` can produce views of
the array: