diff options
author | Sandro Tosi <sandro.tosi@gmail.com> | 2013-01-26 23:33:04 (GMT) |
---|---|---|
committer | Sandro Tosi <sandro.tosi@gmail.com> | 2013-01-26 23:33:04 (GMT) |
commit | 4c1b9f4ca7141c1e2b8f7db04d889e1c034357b1 (patch) | |
tree | 5c8569bf77ef3103559417949e8c718d23242ec3 /Doc/library | |
parent | eab42bf094d9951b38660538f3e15d90f952b650 (diff) | |
download | cpython-4c1b9f4ca7141c1e2b8f7db04d889e1c034357b1.zip cpython-4c1b9f4ca7141c1e2b8f7db04d889e1c034357b1.tar.gz cpython-4c1b9f4ca7141c1e2b8f7db04d889e1c034357b1.tar.bz2 |
fix typo; thanks to Andrew Harrington from docs@
Diffstat (limited to 'Doc/library')
-rw-r--r-- | Doc/library/stdtypes.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/stdtypes.rst b/Doc/library/stdtypes.rst index 138405a..30c2429 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. |