From ad183456875349a46617b61817f6384c8be690e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andrius=20=C5=A0tikonas?= Date: Sun, 30 Apr 2023 20:35:54 +0100 Subject: [PATCH] core: Fix a typo in comment. * src/gc.c (gc_init): Fix typo. --- src/gc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gc.c b/src/gc.c index 8439536d..ba70cfd6 100644 --- a/src/gc.c +++ b/src/gc.c @@ -92,7 +92,7 @@ gc_init () g_cells = cast_charp_to_scmp (g_arena); g_stack_array = cast_charp_to_scmpp (g_arena + arena_bytes); - /* The vector that holds the arenea. */ + /* The vector that holds the arena. */ cell_arena = g_cells; cell_zero = cell_arena + M2_CELL_SIZE;