diff options
author | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-03-14 08:40:15 (GMT) |
---|---|---|
committer | Ross Lagerwall <rosslagerwall@gmail.com> | 2011-03-14 08:40:15 (GMT) |
commit | 8fea2e6a502b9fb13905e5657a06f14c1afd0c24 (patch) | |
tree | 7126492656c1fd268c0bcfff0c1a4558d9472d68 /Doc | |
parent | d79210a0e412e6161a2df2645dc3d68e5f7fa5a8 (diff) | |
download | cpython-8fea2e6a502b9fb13905e5657a06f14c1afd0c24.zip cpython-8fea2e6a502b9fb13905e5657a06f14c1afd0c24.tar.gz cpython-8fea2e6a502b9fb13905e5657a06f14c1afd0c24.tar.bz2 |
Issue #10885: Fix multiprocessing docs typo
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/multiprocessing.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index f280223..24f7185 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -867,7 +867,7 @@ object -- see :ref:`multiprocessing-managers`. .. class:: Semaphore([value]) - A bounded semaphore object: a clone of :class:`threading.Semaphore`. + A semaphore object: a clone of :class:`threading.Semaphore`. .. note:: |