From 28c013dcb464346b7fbefd73ad3cd35c66f98ae3 Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Tue, 10 Mar 2009 00:07:25 +0000 Subject: [PATCH] Fix markup. --- Doc/library/queue.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index e127af2469f..e16d6e98a1d 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -155,7 +155,7 @@ fully processed by daemon consumer threads. The count of unfinished tasks goes up whenever an item is added to the queue. The count goes down whenever a consumer thread calls :meth:`task_done` to indicate that the item was retrieved and all work on it is complete. When the - count of unfinished tasks drops to zero, join() unblocks. + count of unfinished tasks drops to zero, :meth:`join` unblocks. Example of how to wait for enqueued tasks to be completed::