From: Sandro Tosi Date: Sat, 26 Jan 2013 23:33:04 +0000 (+0100) Subject: fix typo; thanks to Andrew Harrington from docs@ X-Git-Tag: v3.3.1rc1~283 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4c1b9f4ca7141c1e2b8f7db04d889e1c034357b1;p=python fix typo; thanks to Andrew Harrington from docs@ --- diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 138405ab02..30c2429664 100644 --- a/Doc/library/stdtypes.rst +++ b/Doc/library/stdtypes.rst @@ -1253,7 +1253,7 @@ loops. the formula ``r[i] = start + step*i``, but the constraints are ``i >= 0`` and ``r[i] > stop``. - A range object will be empty if ``r[0]`` does not meant the value + A range object will be empty if ``r[0]`` does not meet the value constraint. Ranges do support negative indices, but these are interpreted as indexing from the end of the sequence determined by the positive indices.