]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 21 Nov 2020 02:47:17 +0000 (18:47 -0800)
committerGitHub <noreply@github.com>
Sat, 21 Nov 2020 02:47:17 +0000 (18:47 -0800)
(cherry picked from commit 6edf06b24a9335a2b0d44634a95e4f5ba0d586d9)

Co-authored-by: ArioA <ArioA@users.noreply.github.com>
Doc/library/multiprocessing.rst

index a0f814ed140a58ea757f96cc6d76278350187c91..66c852e66bfd0a0d2214b09b26362e28a4b9f784 100644 (file)
@@ -98,7 +98,7 @@ to start a process.  These *start methods* are
   *spawn*
     The parent process starts a fresh python interpreter process.  The
     child process will only inherit those resources necessary to run
-    the process objects :meth:`~Process.run` method.  In particular,
+    the process object's :meth:`~Process.run` method.  In particular,
     unnecessary file descriptors and handles from the parent process
     will not be inherited.  Starting a process using this method is
     rather slow compared to using *fork* or *forkserver*.