From: Raymond Hettinger <python@rcn.com>
Date: Sun, 19 Jan 2003 14:57:12 +0000 (+0000)
Subject: Fix typo
X-Git-Tag: v2.3c1~2404
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f4ca5a2f450edbe2d2f6723d474976077620149f;p=python

Fix typo
---

diff --git a/Doc/ref/ref3.tex b/Doc/ref/ref3.tex
index 321a241a2f..a109678a2b 100644
--- a/Doc/ref/ref3.tex
+++ b/Doc/ref/ref3.tex
@@ -1216,7 +1216,7 @@ defined to handle simple, but not extended slices.) It is also recommended
 that mappings provide the methods \method{keys()}, \method{values()},
 \method{items()}, \method{has_key()}, \method{get()}, \method{clear()},
 \method{setdefault()}, \method{iterkeys()}, \method{itervalues()},
-\method{iteritems()}, \method{pop()},, \method{popitem()},		     
+\method{iteritems()}, \method{pop()}, \method{popitem()},		     
 \method{copy()}, and \method{update()} behaving similar to those for
 Python's standard dictionary objects.  The \module{UserDict} module
 provides a \class{DictMixin} class to help create those methods