From 7362bef5d7716ca21c5b6b8418d51c0fe8ad2759 Mon Sep 17 00:00:00 2001 From: Abdelrahman Date: Sun, 10 May 2026 16:40:30 +0100 Subject: [PATCH] Update arena documentation --- os/Home.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/os/Home.md b/os/Home.md index 951aee5..ad0b56a 100644 --- a/os/Home.md +++ b/os/Home.md @@ -45,7 +45,7 @@ The commit flag behaviour varies by platform: A bump allocator backed by OS virtual memory (or a user-provided buffer). Provides fast sequential allocations with temporary scope support. -> **Prefer the arena-backed Allocator** — The library provides `wapp_mem_arena_allocator_init` which wraps an arena in the `Allocator` interface. Using this over raw arena functions is recommended for most use cases, as it is compatible with all data structures in the base package (arrays, lists, queues, strings) and provides a consistent API. +> â„šī¸ **Prefer the arena-backed Allocator** — The library provides `wapp_mem_arena_allocator_init` which wraps an arena in the `Allocator` interface. Using this over raw arena functions is recommended for most use cases, as it is compatible with all data structures in the base package (arrays, lists, queues, strings) and provides a consistent API. ### Initialization