]> granicus.if.org Git - python/commitdiff
revise wording to avoid confusion for non-native English speakers
authorFred Drake <fdrake@acm.org>
Wed, 21 Jul 2004 17:18:19 +0000 (17:18 +0000)
committerFred Drake <fdrake@acm.org>
Wed, 21 Jul 2004 17:18:19 +0000 (17:18 +0000)
Doc/tut/tut.tex

index be9cb0a4f57739fce50d0e378b77eaf87aa15401..06cb67778dd6db8942d2b688910e1cbbd93e6b92 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}