]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix typo in the garbage_collector.md file (#132803)
authorNybblista <170842536+nybblista@users.noreply.github.com>
Thu, 24 Apr 2025 13:46:39 +0000 (16:46 +0300)
committerGitHub <noreply@github.com>
Thu, 24 Apr 2025 13:46:39 +0000 (16:46 +0300)
InternalDocs/garbage_collector.md

index e4cb9e45c9e96a749b03b2044e5fd2c441755b3c..6d8fe6323d3152473dd5158c64ae418946bb83f2 100644 (file)
@@ -417,7 +417,7 @@ superset of any unreachable cycle including that object, we are guaranteed that
 transitive closure cannot contain any partial cycles.
 We can exclude scanned objects, as they must have been reachable when scanned.
 If a scanned object becomes part of an unreachable cycle after being scanned, it will
-not be collected this at this time, but it will be collected in the next full scavenge.
+not be collected at this time, but it will be collected in the next full scavenge.
 
 > [!NOTE]
 > The GC implementation for the free-threaded build does not use incremental collection.