From d7433d02bc3bcaa30baf47aa08288f7b91824c11 Mon Sep 17 00:00:00 2001 From: Araq Date: Sun, 29 Nov 2015 14:59:46 +0100 Subject: [PATCH] fixes typo --- lib/system/gc.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/gc.nim b/lib/system/gc.nim index 0c632aeb12..c25cf46062 100644 --- a/lib/system/gc.nim +++ b/lib/system/gc.nim @@ -558,7 +558,7 @@ proc growObj(old: pointer, newsize: int, gch: var GcHeap): pointer = # we split the old refcount in 2 parts. XXX This is still not entirely # correct if the pointer that receives growObj's result is on the stack. # A better fix would be to emit the location specific write barrier for - # 'growObj', but this is lost of more work and who knows what new problems + # 'growObj', but this is lots of more work and who knows what new problems # this would create. res.refcount = rcIncrement decRef(ol)