diff options
author | George Yoshida <dynkin@gmail.com> | 2006-04-22 15:10:49 (GMT) |
---|---|---|
committer | George Yoshida <dynkin@gmail.com> | 2006-04-22 15:10:49 (GMT) |
commit | 3c134a20465d6fe37ab8210d4bb35716a5dcfff7 (patch) | |
tree | 05be80354ba161dc113f94c09fbf06b6b47a6dc1 /Doc/lib | |
parent | 6685128b973981ff57b577f09b0a38e0071d272e (diff) | |
download | cpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.zip cpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.tar.gz cpython-3c134a20465d6fe37ab8210d4bb35716a5dcfff7.tar.bz2 |
Typo fixes
Diffstat (limited to 'Doc/lib')
-rw-r--r-- | Doc/lib/libcollections.tex | 4 |
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} |