From: George Yoshida Date: Sat, 22 Apr 2006 15:10:49 +0000 (+0000) Subject: Typo fixes X-Git-Tag: v2.5a2~68 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c134a20465d6fe37ab8210d4bb35716a5dcfff7;p=python Typo fixes --- diff --git a/Doc/lib/libcollections.tex b/Doc/lib/libcollections.tex index d9bfa39106..3e56a3e965 100644 --- a/Doc/lib/libcollections.tex +++ b/Doc/lib/libcollections.tex @@ -59,12 +59,12 @@ Deque objects support the following methods: \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}