diff options
author | Fred Drake <fdrake@acm.org> | 2004-07-21 17:18:19 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2004-07-21 17:18:19 (GMT) |
commit | 20938f57ba9e1af66a1e39b7558d43ebebbe5a8b (patch) | |
tree | 451c672c42d24b22818d002aebbd449ee523c7b6 /Doc/tut | |
parent | b4bf62f807af67a39c0ec8d835a368165857652f (diff) | |
download | cpython-20938f57ba9e1af66a1e39b7558d43ebebbe5a8b.zip cpython-20938f57ba9e1af66a1e39b7558d43ebebbe5a8b.tar.gz cpython-20938f57ba9e1af66a1e39b7558d43ebebbe5a8b.tar.bz2 |
revise wording to avoid confusion for non-native English speakers
Diffstat (limited to 'Doc/tut')
-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} |