diff options
author | Andrew M. Kuchling <amk@amk.ca> | 2007-03-01 14:07:19 (GMT) |
---|---|---|
committer | Andrew M. Kuchling <amk@amk.ca> | 2007-03-01 14:07:19 (GMT) |
commit | 8bc8ab5fec6ae5f6e7a5aa467933a3be55102c68 (patch) | |
tree | 9601a6c7250f681444b9d2a2fed1bdb3f4e7ab52 | |
parent | 036b3beca80cf2ccd6ffe98cf5d10eb8ee5e8b19 (diff) | |
download | cpython-8bc8ab5fec6ae5f6e7a5aa467933a3be55102c68.zip cpython-8bc8ab5fec6ae5f6e7a5aa467933a3be55102c68.tar.gz cpython-8bc8ab5fec6ae5f6e7a5aa467933a3be55102c68.tar.bz2 |
Fix typo (noticed in Raymond's r54053 commit adding NamedTuple
-rw-r--r-- | Doc/lib/libcollections.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libcollections.tex b/Doc/lib/libcollections.tex index a763e31..13a9695 100644 --- a/Doc/lib/libcollections.tex +++ b/Doc/lib/libcollections.tex @@ -16,7 +16,7 @@ Future additions may include balanced trees and ordered dictionaries. \subsection{\class{deque} objects \label{deque-objects}} \begin{funcdesc}{deque}{\optional{iterable}} - Returns a new deque objected initialized left-to-right (using + Returns a new deque object initialized left-to-right (using \method{append()}) with data from \var{iterable}. If \var{iterable} is not specified, the new deque is empty. |