diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-12-27 20:06:44 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2009-12-27 20:06:44 (GMT) |
commit | 2401c0374615bafdb959fd9a56b0f6115f6525c3 (patch) | |
tree | 4b73631df7a6f8133c3e4668537dcb6bf6e1f94c | |
parent | 4c96035f3361d50a6bf40557f04d45244af3dec9 (diff) | |
download | cpython-2401c0374615bafdb959fd9a56b0f6115f6525c3.zip cpython-2401c0374615bafdb959fd9a56b0f6115f6525c3.tar.gz cpython-2401c0374615bafdb959fd9a56b0f6115f6525c3.tar.bz2 |
Fix a typo in comment
-rw-r--r-- | Modules/gcmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index d9bea73..6c323ed 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -960,7 +960,7 @@ collect(int generation) */ (void)handle_finalizers(&finalizers, old); - /* Clear free list only during the collection of the higest + /* Clear free list only during the collection of the highest * generation */ if (generation == NUM_GENERATIONS-1) { clear_freelists(); @@ -981,7 +981,7 @@ collect_generations(void) int i; Py_ssize_t n = 0; - /* Find the oldest generation (higest numbered) where the count + /* Find the oldest generation (highest numbered) where the count * exceeds the threshold. Objects in the that generation and * generations younger than it will be collected. */ for (i = NUM_GENERATIONS-1; i >= 0; i--) { |