From 4280c3a8021d36494eeb54ffad92b573bfc21e34 Mon Sep 17 00:00:00 2001 From: boreddevnl Date: Sun, 19 Apr 2026 22:03:42 +0200 Subject: [PATCH] doc: Fix wording in comment --- src/mem/memory_manager.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mem/memory_manager.c b/src/mem/memory_manager.c index 41c9698..8e24831 100644 --- a/src/mem/memory_manager.c +++ b/src/mem/memory_manager.c @@ -216,7 +216,7 @@ void* kmalloc_aligned(size_t size, size_t alignment) { // 4. [Allocated] // We'll modify block_list[i] and insert others as needed. - // To keep things simple and maintain sorted order, we update from right to left or carefully. + // To keep things simple and maintain sorted order, we update from right to left. if (padding > 0 && remaining_size > 0) { // Case 1: Split into 3