[Python-checkins] Fix typo in multiprocessing documentation (GH-20016)

Joe DeCapo webhook-mailer at python.org
Tue May 19 10:37:28 EDT 2020


https://github.com/python/cpython/commit/a355a06fcc7ef2232736dceb012ae623335cd7ab
commit: a355a06fcc7ef2232736dceb012ae623335cd7ab
branch: master
author: Joe DeCapo <679017+JrGoodle at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2020-05-19T20:07:09+05:30
summary:

Fix typo in multiprocessing documentation (GH-20016)

files:
M Doc/library/multiprocessing.rst

diff --git a/Doc/library/multiprocessing.rst b/Doc/library/multiprocessing.rst
index 50b90031ab5a5..08258a65a89dc 100644
--- a/Doc/library/multiprocessing.rst
+++ b/Doc/library/multiprocessing.rst
@@ -2144,7 +2144,7 @@ with the :class:`Pool` class.
       or by calling :meth:`close` and :meth:`terminate` manually. Failure to do this
       can lead to the process hanging on finalization.
 
-      Note that is **not correct** to rely on the garbage colletor to destroy the pool
+      Note that it is **not correct** to rely on the garbage collector to destroy the pool
       as CPython does not assure that the finalizer of the pool will be called
       (see :meth:`object.__del__` for more information).
 



More information about the Python-checkins mailing list