[Python-checkins] r45646 - python/branches/release24-maint/Doc/lib/libcollections.tex
george.yoshida
python-checkins at python.org
Sat Apr 22 17:12:37 CEST 2006
Author: george.yoshida
Date: Sat Apr 22 17:12:37 2006
New Revision: 45646
Modified:
python/branches/release24-maint/Doc/lib/libcollections.tex
Log:
Typo fixes
Modified: python/branches/release24-maint/Doc/lib/libcollections.tex
==============================================================================
--- python/branches/release24-maint/Doc/lib/libcollections.tex (original)
+++ python/branches/release24-maint/Doc/lib/libcollections.tex Sat Apr 22 17:12:37 2006
@@ -56,12 +56,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}{rotate}{n}
More information about the Python-checkins
mailing list