changeset 401:ec0b16ee7ef9 HEAD

typofix
author Timo Sirainen <tss@iki.fi>
date Wed, 09 Oct 2002 21:08:26 +0300
parents f3ab97771ed8
children e90b95f6d962
files src/lib/data-stack.h
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/lib/data-stack.h	Wed Oct 09 20:49:41 2002 +0300
+++ b/src/lib/data-stack.h	Wed Oct 09 21:08:26 2002 +0300
@@ -13,7 +13,7 @@
     - We can portably specify how much data we want to allocate at runtime
 
    Advantages over malloc():
-    - FAST, most of the time allocating memory mean only updating a couple of
+    - FAST, most of the time allocating memory means only updating a couple of
       pointers and integers. Freeing the memory all at once also is a fast
       operation.
     - No need to free() each allocation resulting in prettier code