From: Fred Drake Date: Wed, 21 Jul 2004 16:25:35 +0000 (+0000) Subject: revise wording to avoid confusion for non-native English speakers X-Git-Tag: v2.3.5c1~160 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b00d7778a0e9be31a608dc293ea31ff9e86e0e28;p=thirdparty%2FPython%2Fcpython.git revise wording to avoid confusion for non-native English speakers --- diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index 3ee5049d29b6..9ae70e282578 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -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}