[Python-checkins] r45645 - python/trunk/Doc/lib/libcollections.tex

george.yoshida python-checkins at python.org
Sat Apr 22 17:10:50 CEST 2006


Author: george.yoshida
Date: Sat Apr 22 17:10:49 2006
New Revision: 45645

Modified:
   python/trunk/Doc/lib/libcollections.tex
Log:
Typo fixes


Modified: python/trunk/Doc/lib/libcollections.tex
==============================================================================
--- python/trunk/Doc/lib/libcollections.tex	(original)
+++ python/trunk/Doc/lib/libcollections.tex	Sat Apr 22 17:10:49 2006
@@ -59,12 +59,12 @@
 
 \begin{methoddesc}{pop}{}
    Remove and return an element from the right side of the deque.
-   If no elements are present, raises a \exception{IndexError}.
+   If no elements are present, raises an \exception{IndexError}.
 \end{methoddesc}
 
 \begin{methoddesc}{popleft}{}
    Remove and return an element from the left side of the deque.
-   If no elements are present, raises a \exception{IndexError}.   
+   If no elements are present, raises an \exception{IndexError}.   
 \end{methoddesc}
 
 \begin{methoddesc}{remove}{value}


More information about the Python-checkins mailing list