]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Docs: fix typo in `InternalDocs/garbage_collector.md` (gh-133151)
authorYongzi Li <1538321957@qq.com>
Tue, 29 Apr 2025 17:20:50 +0000 (01:20 +0800)
committerGitHub <noreply@github.com>
Tue, 29 Apr 2025 17:20:50 +0000 (17:20 +0000)
Fix typo in `InternalDocs/garbage_collector.md`.

InternalDocs/garbage_collector.md

index 3b2551a6b95b141cb9a9355357ae37ddd6766207..4da6cd47dc859e0d708b3d04e544a8f75024f844 100644 (file)
@@ -622,7 +622,7 @@ used as follows.  If the buffer has reached the maximum size, new object
 pointers found while following references are pushed to the stack, rather than
 put in the buffer.  When dequeuing objects from the buffer, we will "prime" the
 buffer if the current length drops below the low threshold.  Priming means
-popping objects from the stack and enqueing them into the buffer.  While
+popping objects from the stack and enqueuing them into the buffer.  While
 priming, we will fill it only until the high threshold is reached.
 
 To measure the effectiveness of the buffer, some benchmark programs were run