summaryrefslogtreecommitdiffstats
path: root/Doc/library/queue.rst
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2011-01-07 20:58:25 (GMT)
committerGeorg Brandl <georg@python.org>2011-01-07 20:58:25 (GMT)
commit2f2a9f772d7cedc14cfcdd8f07bca6471cf07797 (patch)
tree8c257e723fcbd414744384840259c6483bb97bfd /Doc/library/queue.rst
parentfc90213f537b035beb6634498e3663f24709c3ab (diff)
downloadcpython-2f2a9f772d7cedc14cfcdd8f07bca6471cf07797.zip
cpython-2f2a9f772d7cedc14cfcdd8f07bca6471cf07797.tar.gz
cpython-2f2a9f772d7cedc14cfcdd8f07bca6471cf07797.tar.bz2
Fix indent.
Diffstat (limited to 'Doc/library/queue.rst')
-rw-r--r--Doc/library/queue.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst
index 2373929..e3596bb 100644
--- a/Doc/library/queue.rst
+++ b/Doc/library/queue.rst
@@ -177,7 +177,7 @@ Example of how to wait for enqueued tasks to be completed::
A queue class for use in a multi-processing (rather than multi-threading)
context.
- :class:`collections.deque` is an alternative implementation of unbounded
+ :class:`collections.deque` is an alternative implementation of unbounded
queues with fast atomic :func:`append` and :func:`popleft` operations that
do not require locking.