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. )