diff options
author | Fred Drake <fdrake@acm.org> | 2007-01-26 16:28:44 +0000 |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2007-01-26 16:28:44 +0000 |
commit | 7a7cbae77b417b855bdfe5f7c536893cbefcbb1d (patch) | |
tree | 3353e914d5a95302697a971cdcf9e1f91961f170 | |
parent | 9875ba4d4e96e28c1b1a400d4f67dfc658ab189a (diff) | |
download | cpython-git-7a7cbae77b417b855bdfe5f7c536893cbefcbb1d.tar.gz |
fix typo (extraneous ")")
-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 99c7584d51..342fbca33b 100644 --- a/Doc/tut/tut.tex +++ b/Doc/tut/tut.tex @@ -2015,7 +2015,7 @@ applied to complex expressions and nested functions: There is a way to remove an item from a list given its index instead of its value: the \keyword{del} statement. This differs from the -\method{pop()}) method which returns a value. The \keyword{del} +\method{pop()} method which returns a value. The \keyword{del} statement can also be used to remove slices from a list or clear the entire list (which we did earlier by assignment of an empty list to the slice). For example: |