]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix typo in 3.12 What's New (#101105)
authorTushar Sadhwani <tushar.sadhwani000@gmail.com>
Wed, 18 Jan 2023 16:24:56 +0000 (21:54 +0530)
committerGitHub <noreply@github.com>
Wed, 18 Jan 2023 16:24:56 +0000 (21:54 +0530)
Doc/whatsnew/3.12.rst

index 72a3ad9f5c8c760db3b9362001f7c6c2b0805585..0c85aef007e0af2c149da0b9b1f0360b862715cc 100644 (file)
@@ -157,7 +157,7 @@ Other Language Changes
   in :gh:`96670`.)
 
 * The Garbage Collector now runs only on the eval breaker mechanism of the
-  Python bytecode evaluation loop instead on object allocations. The GC can
+  Python bytecode evaluation loop instead of object allocations. The GC can
   also run when :c:func:`PyErr_CheckSignals` is called so C extensions that
   need to run for a long time without executing any Python code also have a
   chance to execute the GC periodically. (Contributed by Pablo Galindo in