summaryrefslogtreecommitdiffstats
path: root/Doc/library/multiprocessing.rst
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-08-14 10:20:05 (GMT)
committerGitHub <noreply@github.com>2020-08-14 10:20:05 (GMT)
commitbb0b08540cc93e56f3f1bde1b39ce086d9e35fe1 (patch)
tree07b1760928dc17078a061fe7424f0f9303addb1c /Doc/library/multiprocessing.rst
parent87d8287865e5c9f137f6b5cf8c34c2c509eb5e9d (diff)
downloadcpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.zip
cpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.tar.gz
cpython-bb0b08540cc93e56f3f1bde1b39ce086d9e35fe1.tar.bz2
bpo-40204: Fix reference to terms in the doc (GH-21865)
Sphinx 3 requires to refer to terms with the exact case. For example, fix the Sphinx 3 warning: Doc/library/pkgutil.rst:71: WARNING: term Loader not found in case sensitive match.made a reference to loader instead.
Diffstat (limited to 'Doc/library/multiprocessing.rst')
-rw-r--r--Doc/library/multiprocessing.rst3
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 69d6523..28510ac 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -14,7 +14,8 @@ Introduction
:mod:`multiprocessing` is a package that supports spawning processes using an
API similar to the :mod:`threading` module. The :mod:`multiprocessing` package
offers both local and remote concurrency, effectively side-stepping the
-:term:`Global Interpreter Lock` by using subprocesses instead of threads. Due
+:term:`Global Interpreter Lock <global interpreter lock>` by using
+subprocesses instead of threads. Due
to this, the :mod:`multiprocessing` module allows the programmer to fully
leverage multiple processors on a given machine. It runs on both Unix and
Windows.