]> granicus.if.org Git - python/commitdiff
Fix a typo in comment
authorAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sun, 27 Dec 2009 20:06:44 +0000 (20:06 +0000)
committerAmaury Forgeot d'Arc <amauryfa@gmail.com>
Sun, 27 Dec 2009 20:06:44 +0000 (20:06 +0000)
Modules/gcmodule.c

index d9bea73c33b0837d3b15c863e21f1c918405acb9..6c323edd720087f75f2a1086997e01ea8e58d1f9 100644 (file)
@@ -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--) {