From 77c6425e65cf0ee2d487e778a159b67669a48489 Mon Sep 17 00:00:00 2001 From: Andreas Rumpf Date: Mon, 16 Sep 2019 19:03:17 +0200 Subject: [PATCH] gc_common: typo --- lib/system/gc_common.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/system/gc_common.nim b/lib/system/gc_common.nim index 468172dcef..fe07766d92 100644 --- a/lib/system/gc_common.nim +++ b/lib/system/gc_common.nim @@ -414,7 +414,7 @@ proc prepareDealloc(cell: PCell) = # the finalizer could invoke something that # allocates memory; this could trigger a garbage # collection. Since we are already collecting we - # prevend recursive entering here by a lock. + # prevent recursive entering here by a lock. # XXX: we should set the cell's children to nil! inc(gch.recGcLock) (cast[Finalizer](t.finalizer))(cellToUsr(cell))