summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
Diffstat (limited to 'Doc')
-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.