]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
revise wording to avoid confusion for non-native English speakers
authorFred Drake <fdrake@acm.org>
Wed, 21 Jul 2004 16:25:35 +0000 (16:25 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 21 Jul 2004 16:25:35 +0000 (16:25 +0000)
Doc/tut/tut.tex

index 3ee5049d29b69203526b3fa1c3b7b85d915337b5..9ae70e282578867eb23aec47c6de9f3776f2c902 100644 (file)
@@ -689,7 +689,7 @@ sliced.
 \begin{verbatim}
 >>> word[:2]    # The first two characters
 'He'
->>> word[2:]    # All but the first two characters
+>>> word[2:]    # Everything except the first two characters
 'lpA'
 \end{verbatim}