]> granicus.if.org Git - python/commitdiff
Fix indent.
authorGeorg Brandl <georg@python.org>
Fri, 7 Jan 2011 20:58:25 +0000 (20:58 +0000)
committerGeorg Brandl <georg@python.org>
Fri, 7 Jan 2011 20:58:25 +0000 (20:58 +0000)
Doc/library/queue.rst

index 23739299f5e3081b36e41faae3bbfc35ff98493e..e3596bb2f30d7028c805dd4469ab28991d6e927f 100644 (file)
@@ -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.