From f9976c82d33431693b1a1af30549cdb1d7bee4ad Mon Sep 17 00:00:00 2001 From: Vincent Legoll Date: Sat, 26 Dec 2015 10:13:01 +0100 Subject: Fix carriage return inside commented python code This looks more conventionnal --- doc/source/reference/arrays.ndarray.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'doc/source/reference/arrays.ndarray.rst') 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 ` can produce views of the array: -- cgit v1.2.1