From 9647d78805a107af4729aa0d3f0c0e82d65b3624 Mon Sep 17 00:00:00 2001 From: d6 Date: Wed, 23 Nov 2022 00:25:03 -0500 Subject: [PATCH] fix typo --- alloc.tal | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alloc.tal b/alloc.tal index 2cfb88c..13b0ac0 100644 --- a/alloc.tal +++ b/alloc.tal @@ -9,7 +9,7 @@ ( memory is allocated using arenas which track which memory is free ) ( and which memory is allocated. each arena can allocate items of a ) ( fixed size (k bytes), and these arenas are configured at program ) -( start using ;arena-init. ) +( start using ;init-arena. ) ( ) ( an arena that can allocate n items of k bytes each has an overhead ) ( of ceil(n/8)+6 bytes; it will occuppy n*k+ceil(n/8)+6 bytes total. )