[Python-checkins] r54060 - python/branches/release25-maint/Doc/lib/libcollections.tex

andrew.kuchling python-checkins at python.org
Thu Mar 1 15:07:21 CET 2007


Author: andrew.kuchling
Date: Thu Mar  1 15:07:19 2007
New Revision: 54060

Modified:
   python/branches/release25-maint/Doc/lib/libcollections.tex
Log:
Fix typo (noticed in Raymond's r54053 commit adding NamedTuple

Modified: python/branches/release25-maint/Doc/lib/libcollections.tex
==============================================================================
--- python/branches/release25-maint/Doc/lib/libcollections.tex	(original)
+++ python/branches/release25-maint/Doc/lib/libcollections.tex	Thu Mar  1 15:07:19 2007
@@ -16,7 +16,7 @@
 \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.
 


More information about the Python-checkins mailing list