[Python-checkins] bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)

miss-islington webhook-mailer at python.org
Fri Nov 20 21:47:25 EST 2020


https://github.com/python/cpython/commit/0762e09eb14269b38f60e1b58d2c7f36056a4694
commit: 0762e09eb14269b38f60e1b58d2c7f36056a4694
branch: 3.8
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: miss-islington <31488909+miss-islington at users.noreply.github.com>
date: 2020-11-20T18:47:17-08:00
summary:

bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)

(cherry picked from commit 6edf06b24a9335a2b0d44634a95e4f5ba0d586d9)

Co-authored-by: ArioA <ArioA at users.noreply.github.com>

files:
M Doc/library/multiprocessing.rst

diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index a0f814ed140a5..66c852e66bfd0 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -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*.



More information about the Python-checkins mailing list