doc: Fix wording in comment

This commit is contained in:
boreddevnl 2026-04-19 22:03:42 +02:00
parent 78ae0f154d
commit 4280c3a802

View file

@ -216,7 +216,7 @@ void* kmalloc_aligned(size_t size, size_t alignment) {
// 4. [Allocated] // 4. [Allocated]
// We'll modify block_list[i] and insert others as needed. // 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) { if (padding > 0 && remaining_size > 0) {
// Case 1: Split into 3 // Case 1: Split into 3