diff options
author | Srinivas Reddy Thatiparthy (తాటిపర్తి శ్రీనివాస్ రెడ్డి) <thatiparthysreenivas@gmail.com> | 2024-12-07 10:12:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-07 10:12:45 (GMT) |
commit | 72dca6c4eda0d63ee35a0aa619ae931ab226bef9 (patch) | |
tree | 75b337128f2838c70f04689fd4d9763f62271310 | |
parent | 31c9f3ced293492b38e784c17c4befe425da5dab (diff) | |
download | cpython-72dca6c4eda0d63ee35a0aa619ae931ab226bef9.zip cpython-72dca6c4eda0d63ee35a0aa619ae931ab226bef9.tar.gz cpython-72dca6c4eda0d63ee35a0aa619ae931ab226bef9.tar.bz2 |
gh-119786: fix typo in `InternalDocs/garbage_collector.md` (#127687)
-rw-r--r-- | InternalDocs/garbage_collector.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/InternalDocs/garbage_collector.md b/InternalDocs/garbage_collector.md index 4761f78..394e4ef 100644 --- a/InternalDocs/garbage_collector.md +++ b/InternalDocs/garbage_collector.md @@ -518,7 +518,7 @@ Then the above algorithm is repeated, starting from step 2. Determining how much work to do ------------------------------- -We need to do a certain amount of work to enusre that garbage is collected, +We need to do a certain amount of work to ensure that garbage is collected, but doing too much work slows down execution. To work out how much work we need to do, consider a heap with `L` live objects |