summaryrefslogtreecommitdiffstats
path: root/Doc
diff options
context:
space:
mode:
authorRichard Oudkerk <shibturn@gmail.com>2013-06-24 19:38:22 (GMT)
committerRichard Oudkerk <shibturn@gmail.com>2013-06-24 19:38:22 (GMT)
commit66e0a04d2e7d4744db83058568a326db2fa8e87e (patch)
treeeef31f53a36861beca87a9ff85a1d8e88559b8ff /Doc
parent2cc73e8e58ddc9c99c790c4cf4afaadc418d4d9d (diff)
downloadcpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.zip
cpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.tar.gz
cpython-66e0a04d2e7d4744db83058568a326db2fa8e87e.tar.bz2
Fix typo.
Diffstat (limited to 'Doc')
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index bace92a..3f368a3 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -496,7 +496,7 @@ Note that one can also create a shared queue by using a manager object -- see
:ref:`manager <multiprocessing-managers>`.
(1) After putting an object on an empty queue there may be an
- infinitessimal delay before the queue's :meth:`~Queue.empty`
+ infinitesimal delay before the queue's :meth:`~Queue.empty`
method returns :const:`False` and :meth:`~Queue.get_nowait` can
return without raising :exc:`Queue.Empty`.