diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-03-31 02:51:40 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-03-31 02:51:40 (GMT) |
commit | b1da0501317c6e0a6de6d1407ef94dbd936acbbe (patch) | |
tree | 7a18968c72a5d9405d1559d6617894713612b203 /Objects/obmalloc.c | |
parent | 2c95c99a644a62cd2544dd37be6e04b849b07416 (diff) | |
download | cpython-b1da0501317c6e0a6de6d1407ef94dbd936acbbe.zip cpython-b1da0501317c6e0a6de6d1407ef94dbd936acbbe.tar.gz cpython-b1da0501317c6e0a6de6d1407ef94dbd936acbbe.tar.bz2 |
Fixed a typo in a new comment.
Diffstat (limited to 'Objects/obmalloc.c')
-rw-r--r-- | Objects/obmalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/obmalloc.c b/Objects/obmalloc.c index 6a55a14..e60fda4 100644 --- a/Objects/obmalloc.c +++ b/Objects/obmalloc.c @@ -701,7 +701,7 @@ _PyMalloc_Free(void *p) } /* * Pool is now empty: unlink from usedpools, and - * link to the front of usedpools. This ensures that + * link to the front of freepools. This ensures that * previously freed pools will be allocated later * (being not referenced, they are perhaps paged out). */ |