From 1478cdc61c34e95f9de74c66788c1c090fb465f1 Mon Sep 17 00:00:00 2001 From: nybblista <170842536+nybblista@users.noreply.github.com> Date: Tue, 22 Apr 2025 18:22:13 +0300 Subject: [PATCH] Fix typo in garbage_collector.md file --- InternalDocs/garbage_collector.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InternalDocs/garbage_collector.md b/InternalDocs/garbage_collector.md index e4cb9e45c9e96a..6d8fe6323d3152 100644 --- a/InternalDocs/garbage_collector.md +++ b/InternalDocs/garbage_collector.md @@ -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.