]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
doc: Fix small typos in library/multiprocessing (GH-698)
authorSylvain Bellemare <sbellem@gmail.com>
Fri, 24 Mar 2017 08:26:07 +0000 (09:26 +0100)
committerINADA Naoki <methane@users.noreply.github.com>
Fri, 24 Mar 2017 08:26:07 +0000 (17:26 +0900)
Doc/library/multiprocessing.rst

index 96d1424126caed83eecb8ee0948e7371796621d4..6b4a8cbd299e4c53b833918e3018f7dace17221a 100644 (file)
@@ -135,7 +135,7 @@ start a *semaphore tracker* process which tracks the unlinked named
 semaphores created by processes of the program.  When all processes
 have exited the semaphore tracker unlinks any remaining semaphores.
 Usually there should be none, but if a process was killed by a signal
-there may some "leaked" semaphores.  (Unlinking the named semaphores
+there may be some "leaked" semaphores.  (Unlinking the named semaphores
 is a serious matter since the system allows only a limited number, and
 they will not be automatically unlinked until the next reboot.)
 
@@ -179,7 +179,7 @@ program. ::
 
 Note that objects related to one context may not be compatible with
 processes for a different context.  In particular, locks created using
-the *fork* context cannot be passed to processes started using the
+the *fork* context cannot be passed to processes started using the
 *spawn* or *forkserver* start methods.
 
 A library which wants to use a particular start method should probably