From 8fea2e6a502b9fb13905e5657a06f14c1afd0c24 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Mon, 14 Mar 2011 10:40:15 +0200 Subject: [PATCH] Issue #10885: Fix multiprocessing docs typo --- Doc/library/multiprocessing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst index f2802236e8d..24f7185aa18 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::