summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-03 22:49:27 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-03 22:49:27 (GMT)
commit0b37b333a8c4852de8166dae6d331ed18d312958 (patch)
treee809e8012f3d4407dae37d3f6fa9737e43b13e1a /Doc
parent661730e2aaa414f9b6a3eb1df020e4de01bb92f0 (diff)
downloadcpython-0b37b333a8c4852de8166dae6d331ed18d312958.zip
cpython-0b37b333a8c4852de8166dae6d331ed18d312958.tar.gz
cpython-0b37b333a8c4852de8166dae6d331ed18d312958.tar.bz2
Fix missing word.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/multiprocessing.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 9bb119e..ebed0c9 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -2221,8 +2221,8 @@ Synchronization types like locks, conditions and queues:
.. literalinclude:: ../includes/mp_synchronize.py
-An showing how to use queues to feed tasks to a collection of worker process and
-collect the results:
+An example showing how to use queues to feed tasks to a collection of worker
+process and collect the results:
.. literalinclude:: ../includes/mp_workers.py