summaryrefslogtreecommitdiffstats
path: root/Doc/lib/libcollections.tex
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2007-04-01 21:29:15 (GMT)
committerGeorg Brandl <georg@python.org>2007-04-01 21:29:15 (GMT)
commit4e9165d2dd15cd1766ae1286517a44f1620d3cbf (patch)
tree82f15bdc00a92fb0ddb1ee11471a46288aba969e /Doc/lib/libcollections.tex
parentc7a2e4656e09cebd36a4ad2439794a48b9565737 (diff)
downloadcpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.zip
cpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.tar.gz
cpython-4e9165d2dd15cd1766ae1286517a44f1620d3cbf.tar.bz2
Fix a lot of markup and meta-information glitches.
Diffstat (limited to 'Doc/lib/libcollections.tex')
-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 9e755b1..475567a 100644
--- a/Doc/lib/libcollections.tex
+++ b/Doc/lib/libcollections.tex
@@ -17,7 +17,7 @@ Future additions may include balanced trees and ordered dictionaries.
\subsection{\class{deque} objects \label{deque-objects}}
-\begin{funcdesc}{deque}{\optional{iterable}}
+\begin{classdesc}{deque}{\optional{iterable}}
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.
@@ -32,7 +32,7 @@ Future additions may include balanced trees and ordered dictionaries.
for \samp{pop(0)} and \samp{insert(0, v)} operations which change both the
size and position of the underlying data representation.
\versionadded{2.4}
-\end{funcdesc}
+\end{classdesc}
Deque objects support the following methods: