]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in multiprocessing documentation (GH-20016)
authorJoe DeCapo <679017+JrGoodle@users.noreply.github.com>
Tue, 19 May 2020 14:37:09 +0000 (09:37 -0500)
committerGitHub <noreply@github.com>
Tue, 19 May 2020 14:37:09 +0000 (20:07 +0530)
Doc/library/multiprocessing.rst

index 50b90031ab5a58b7f5f740cc4487bd166050da75..08258a65a89dc35fd783df6bf343ed5e9ec029c9 100644 (file)
@@ -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).