]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)
authorArioA <ArioA@users.noreply.github.com>
Sat, 21 Nov 2020 02:37:54 +0000 (02:37 +0000)
committerGitHub <noreply@github.com>
Sat, 21 Nov 2020 02:37:54 +0000 (21:37 -0500)
Doc/library/multiprocessing.rst

index f8e7556f25b4e0809f4735cce12e9e7c7aff5025..20cd99d8ce2c872752533769ffa7f98541b50297 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*.