From 630c2e97620c51f61f51cfeef9d5b9d5a88ff1c2 Mon Sep 17 00:00:00 2001 From: antifallobst Date: Sun, 12 Feb 2023 19:38:55 +0100 Subject: [PATCH] docs: fixed typo in 'memory_free' --- .wiki/Kernel-documentation.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.wiki/Kernel-documentation.md b/.wiki/Kernel-documentation.md index 0deb925..f2c36b7 100644 --- a/.wiki/Kernel-documentation.md +++ b/.wiki/Kernel-documentation.md @@ -594,7 +594,7 @@ Returns the address to a buffer, that is at least **_size_** bytes big. On linux this function is called _malloc_. #### `memory_free(address)` - function (void) -The buffer at address, this buffer needs to be a buffer, that was created with `memory_allocate`. +Free the buffer at address and make it reallocatable , this buffer needs to be a buffer, that was created with `memory_allocate`. On linux this function is called _free_. #### `memory_allocator_init(base)` - function (void)