summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2020-11-21 02:47:17 (GMT)
committerGitHub <noreply@github.com>2020-11-21 02:47:17 (GMT)
commit0762e09eb14269b38f60e1b58d2c7f36056a4694 (patch)
tree63d8a78c3dac395ee5d05dda6369b27ac4564ce6
parentc076d488059c96e97936f4d669e32aea0994886f (diff)
downloadcpython-0762e09eb14269b38f60e1b58d2c7f36056a4694.zip
cpython-0762e09eb14269b38f60e1b58d2c7f36056a4694.tar.gz
cpython-0762e09eb14269b38f60e1b58d2c7f36056a4694.tar.bz2
bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)
(cherry picked from commit 6edf06b24a9335a2b0d44634a95e4f5ba0d586d9) Co-authored-by: ArioA <ArioA@users.noreply.github.com>
-rw-r--r--Doc/library/multiprocessing.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index a0f814e..66c852e 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*.