From: Amaury Forgeot d'Arc Date: Sun, 27 Dec 2009 20:06:44 +0000 (+0000) Subject: Fix a typo in comment X-Git-Tag: v2.7a2~106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2401c0374615bafdb959fd9a56b0f6115f6525c3;p=python Fix a typo in comment --- diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index d9bea73c33..6c323edd72 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--) {