summaryrefslogtreecommitdiffstats
path: root/Doc/tut
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2004-07-21 17:36:47 (GMT)
committerFred Drake <fdrake@acm.org>2004-07-21 17:36:47 (GMT)
commit4ab0e9e5412f8779a77b10de2c57182decb3c29f (patch)
treef345c763907f9ee4fbc79597140a09a40d75f234 /Doc/tut
parent20938f57ba9e1af66a1e39b7558d43ebebbe5a8b (diff)
downloadcpython-4ab0e9e5412f8779a77b10de2c57182decb3c29f.zip
cpython-4ab0e9e5412f8779a77b10de2c57182decb3c29f.tar.gz
cpython-4ab0e9e5412f8779a77b10de2c57182decb3c29f.tar.bz2
revise wording to avoid confusion for non-native English speakers
(second occurance of the same wording)
Diffstat (limited to 'Doc/tut')
-rw-r--r--Doc/tut/tut.tex2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex
index 06cb677..3373ab3 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}