diff options
author | Steve Holden <steve@holdenweb.com> | 2007-04-26 14:23:12 (GMT) |
---|---|---|
committer | Steve Holden <steve@holdenweb.com> | 2007-04-26 14:23:12 (GMT) |
commit | 6e6eaa7a676a4998aee6a5d335147b97226f21bd (patch) | |
tree | d82855805d3b1fdf6a6ede2d738495597cac7413 /Doc/tut | |
parent | 94b706be3573957a349367646195b5a203959aec (diff) | |
download | cpython-6e6eaa7a676a4998aee6a5d335147b97226f21bd.zip cpython-6e6eaa7a676a4998aee6a5d335147b97226f21bd.tar.gz cpython-6e6eaa7a676a4998aee6a5d335147b97226f21bd.tar.bz2 |
Minor wording change on slicing aide-memoire.
Diffstat (limited to 'Doc/tut')
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 2981a78..3e047f3 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -813,7 +813,7 @@ Traceback (most recent call last): IndexError: string index out of range \end{verbatim} -The best way to remember how slices work is to think of the indices as +One way to remember how slices work is to think of the indices as pointing \emph{between} characters, with the left edge of the first character numbered 0. Then the right edge of the last character of a string of \var{n} characters has index \var{n}, for example: |