diff options
author | Raymond Hettinger <python@rcn.com> | 2009-03-10 00:11:32 +0000 |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2009-03-10 00:11:32 +0000 |
commit | 618f505c02d1be8582d303ae48ce399d7d477666 (patch) | |
tree | a467cc2cec709c037f6f96777daa9095cf8914d4 | |
parent | e1bfcfac2d9e1522065eac15e1cc6b1b07c0852d (diff) | |
download | cpython-git-618f505c02d1be8582d303ae48ce399d7d477666.tar.gz |
Fix markup.
-rw-r--r-- | Doc/library/queue.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/queue.rst b/Doc/library/queue.rst index 0508fcb604..ea579f9470 100644 --- a/Doc/library/queue.rst +++ b/Doc/library/queue.rst @@ -168,7 +168,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. .. versionadded:: 2.5 |