summaryrefslogtreecommitdiffstats
path: root/Doc/lib
diff options
context:
space:
mode:
authorGeorge Yoshida <dynkin@gmail.com>2006-04-22 15:10:49 (GMT)
committerGeorge Yoshida <dynkin@gmail.com>2006-04-22 15:10:49 (GMT)
commit3c134a20465d6fe37ab8210d4bb35716a5dcfff7 (patch)
tree05be80354ba161dc113f94c09fbf06b6b47a6dc1 /Doc/lib
parent6685128b973981ff57b577f09b0a38e0071d272e (diff)
downloadcpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.zip
cpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.tar.gz
cpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.tar.bz2
Typo fixes
Diffstat (limited to 'Doc/lib')
-rw-r--r--Doc/lib/libcollections.tex4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/lib/libcollections.tex b/Doc/lib/libcollections.tex
index d9bfa39..3e56a3e 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}