Docs: fix typo in InternalDocs/garbage_collector.md (gh-133151)

Fix typo in `InternalDocs/garbage_collector.md`.
This commit is contained in:
Yongzi Li 2025-04-30 01:20:50 +08:00 committed by GitHub
parent ccf1b0b1c1
commit 814ca116d5
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View 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