From 145eef414b4161e8c25652090d03ecb1b92885e3 Mon Sep 17 00:00:00 2001 From: Joe Thornber Date: Tue, 8 Jan 2002 10:51:13 +0000 Subject: [PATCH] o Remove anomalous punctuation. --- lib/mm/pool.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/mm/pool.h b/lib/mm/pool.h index 392a95839..a2e747120 100644 --- a/lib/mm/pool.h +++ b/lib/mm/pool.h @@ -13,7 +13,7 @@ /* * The pool allocator is useful when you are going - * to allocate lot's of memory, use the memory for + * to allocate lots of memory, use the memory for * a bit, and then free the memory in one go. A * surprising amount of code has this usage * profile. @@ -26,14 +26,14 @@ * moving it into the allocated half. This * operation is very efficient. * - * pool_free free's the allocated object *and* all + * pool_free frees the allocated object *and* all * objects allocated after it. It is important to * note this semantic difference from malloc/free. * This is also extremely efficient, since a * single pool_free can dispose of a large complex * object. * - * pool_destroy free's all allocated memory. + * pool_destroy frees all allocated memory. * * eg, If you are building a binary tree in your * program, and know that you are only ever going