From d2b9b4d607c307bdfa2d99b5d4ec672adf143a94 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Thu, 12 Feb 2026 21:38:23 +0100 Subject: [PATCH] remove cringe capitalization --- cig.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cig.h b/cig.h index 8673b39..e1a157d 100644 --- a/cig.h +++ b/cig.h @@ -130,7 +130,7 @@ allocator_t allocator_from_arena(arena_allocator_t *this); // - Use borrow_allocator as backing for testing/debugging // - Use forever_allocator as backing for if the lifetime of the allocated // items is the entire program duration. -// - DO NOT use another arena_allocator as backing +// - do not use another arena_allocator as backing #define arena_allocator_create(BACKING_ALLOCATOR, INITIAL_CAPACITY) \ allocator_from_arena(&arena_allocator_value(BACKING_ALLOCATOR, INITIAL_CAPACITY))