summaryrefslogtreecommitdiffstats
path: root/Doc/library
diff options
context:
space:
mode:
authorArioA <ArioA@users.noreply.github.com>2020-11-21 02:37:54 (GMT)
committerGitHub <noreply@github.com>2020-11-21 02:37:54 (GMT)
commit6edf06b24a9335a2b0d44634a95e4f5ba0d586d9 (patch)
treef7005d128a8c4d336d3c153582803266ad959606 /Doc/library
parent9f02b479e6b6b48d0c2aad621978cff82e530b15 (diff)
downloadcpython-6edf06b24a9335a2b0d44634a95e4f5ba0d586d9.zip
cpython-6edf06b24a9335a2b0d44634a95e4f5ba0d586d9.tar.gz
cpython-6edf06b24a9335a2b0d44634a95e4f5ba0d586d9.tar.bz2
bpo-42407: Use possessive appostrophe in multiprocessing doc (GH-23400)
Diffstat (limited to 'Doc/library')
-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 f8e7556..20cd99d 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*.