From: Fred Drake Date: Wed, 21 Jul 2004 17:34:49 +0000 (+0000) Subject: revise wording to avoid confusion for non-native English speakers X-Git-Tag: v2.3.5c1~159 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ef6a1f30b18854454b16d749d1daaa5f0be3544b;p=thirdparty%2FPython%2Fcpython.git 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 9ae70e282578..61e56f592f92 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}