summary refs log tree commit diff stats
path: root/lib/system/alloc.nim
diff options
context:
space:
mode:
authordef <dennis@felsin9.de>2015-06-21 21:25:38 +0200
committerdef <dennis@felsin9.de>2015-06-21 21:25:38 +0200
commite7132767a19fae1c20bfe49d764b628f3da6e8c8 (patch)
treeae60970ad217b90de01f3fb56ae8eaaabd015d06 /lib/system/alloc.nim
parenta7f03e8d46b25ef9210a75d1c09bccbebb9e3842 (diff)
downloadNim-e7132767a19fae1c20bfe49d764b628f3da6e8c8.tar.gz
Fix typos in comments
Diffstat (limited to 'lib/system/alloc.nim')
-rw-r--r--lib/system/alloc.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/system/alloc.nim b/lib/system/alloc.nim
index 76232499e..d877cda2c 100644
--- a/lib/system/alloc.nim
+++ b/lib/system/alloc.nim
@@ -210,7 +210,7 @@ proc getMaxMem(a: var MemRegion): int =
 
 proc llAlloc(a: var MemRegion, size: int): pointer =
   # *low-level* alloc for the memory managers data structures. Deallocation
-  # is done at he end of the allocator's life time.
+  # is done at the end of the allocator's life time.
   if a.llmem == nil or size > a.llmem.size:
     # the requested size is ``roundup(size+sizeof(LLChunk), PageSize)``, but
     # since we know ``size`` is a (small) constant, we know the requested size