diff options
-rw-r--r-- | Doc/tut/tut.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tut/tut.tex b/Doc/tut/tut.tex index be9cb0a..06cb677 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} |