summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-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}