Skip to content

Docs: fix typo in InternalDocs/garbage_collector.md #133151

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 29, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion InternalDocs/garbage_collector.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading