Fix typo in the garbage_collector.md file (#132803)

This commit is contained in:
Nybblista 2025-04-24 16:46:39 +03:00 committed by GitHub
parent 580888927c
commit 210f027d02
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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.