From: Fred Drake Date: Wed, 21 Jul 2004 17:36:47 +0000 (+0000) Subject: revise wording to avoid confusion for non-native English speakers X-Git-Tag: v2.4a2~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ab0e9e5412f8779a77b10de2c57182decb3c29f;p=python revise wording to avoid confusion for non-native English speakers (second occurance of the same wording) --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 06cb67778d..3373ab3318 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -750,7 +750,7 @@ For example: 'p' >>> word[-2:] # The last two characters 'pA' ->>> word[:-2] # All but the last two characters +>>> word[:-2] # Everything except the last two characters 'Hel' \end{verbatim}