From a3ed3f03d75c416010da73bc4d5ad1e3e8f28d19 Mon Sep 17 00:00:00 2001 From: Ross Lagerwall Date: Mon, 14 Mar 2011 10:43:36 +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 f4e4a8e57e8..26d0b3d0e42 100644 --- a/Doc/library/multiprocessing.rst +++ b/Doc/library/multiprocessing.rst @@ -869,7 +869,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::