summaryrefslogtreecommitdiffstats
path: root/Doc/tutorial
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2008-05-12 10:03:16 (GMT)
committerGeorg Brandl <georg@python.org>2008-05-12 10:03:16 (GMT)
commit7a148c23571491985b06fde373c29d299cd36447 (patch)
tree137a6c9c38b3bbd8d0b11c5112c2aad7b47e1f2a /Doc/tutorial
parentbb141bb1f4ece144f681739279dba266f5e64a9d (diff)
downloadcpython-7a148c23571491985b06fde373c29d299cd36447.zip
cpython-7a148c23571491985b06fde373c29d299cd36447.tar.gz
cpython-7a148c23571491985b06fde373c29d299cd36447.tar.bz2
Fix-up docs for socketserver and queue renaming.
Diffstat (limited to 'Doc/tutorial')
-rw-r--r--Doc/tutorial/stdlib2.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tutorial/stdlib2.rst b/Doc/tutorial/stdlib2.rst
index c4db274..9da5213 100644
--- a/Doc/tutorial/stdlib2.rst
+++ b/Doc/tutorial/stdlib2.rst
@@ -198,7 +198,7 @@ variables, and semaphores.
While those tools are powerful, minor design errors can result in problems that
are difficult to reproduce. So, the preferred approach to task coordination is
to concentrate all access to a resource in a single thread and then use the
-:mod:`Queue` module to feed that thread with requests from other threads.
+:mod:`queue` module to feed that thread with requests from other threads.
Applications using :class:`Queue` objects for inter-thread communication and
coordination are easier to design, more readable, and more reliable.