]> granicus.if.org Git - python/commitdiff
fix typo (extraneous ")")
authorFred Drake <fdrake@acm.org>
Fri, 26 Jan 2007 16:28:44 +0000 (16:28 +0000)
committerFred Drake <fdrake@acm.org>
Fri, 26 Jan 2007 16:28:44 +0000 (16:28 +0000)
Doc/tut/tut.tex

index 99c7584d51a3a4b876afb7b3b2ea7eafc192ea9a..342fbca33b85c057e6f061bc0b732ec0c9909253 100644 (file)
@@ -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: