Kaydet (Commit) 2401c037 authored tarafından Amaury Forgeot d'Arc's avatar Amaury Forgeot d'Arc

Fix a typo in comment

üst 4c96035f
...@@ -960,7 +960,7 @@ collect(int generation) ...@@ -960,7 +960,7 @@ collect(int generation)
*/ */
(void)handle_finalizers(&finalizers, old); (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 */ * generation */
if (generation == NUM_GENERATIONS-1) { if (generation == NUM_GENERATIONS-1) {
clear_freelists(); clear_freelists();
...@@ -981,7 +981,7 @@ collect_generations(void) ...@@ -981,7 +981,7 @@ collect_generations(void)
int i; int i;
Py_ssize_t n = 0; 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 * exceeds the threshold. Objects in the that generation and
* generations younger than it will be collected. */ * generations younger than it will be collected. */
for (i = NUM_GENERATIONS-1; i >= 0; i--) { for (i = NUM_GENERATIONS-1; i >= 0; i--) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment