summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFred Drake <fdrake@acm.org>2007-01-26 16:27:45 (GMT)
committerFred Drake <fdrake@acm.org>2007-01-26 16:27:45 (GMT)
commitb17830e70902a5c056b1219c1429f92c91b9010a (patch)
tree062e0a16a7e1fbf1cb77b8ff2ee5afedfc1ca7a3
parent6d8e5ad09ddd548ac2fe577f414200d5e926b94d (diff)
downloadcpython-b17830e70902a5c056b1219c1429f92c91b9010a.zip
cpython-b17830e70902a5c056b1219c1429f92c91b9010a.tar.gz
cpython-b17830e70902a5c056b1219c1429f92c91b9010a.tar.bz2
fix typo (extraneous ")")
-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 99c7584..342fbca 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: