docs: fixed typo in 'memory_free'

This commit is contained in:
antifallobst 2023-02-12 19:38:55 +01:00
parent b23177cb8f
commit 630c2e9762
1 changed files with 1 additions and 1 deletions

View File

@ -594,7 +594,7 @@ Returns the address to a buffer, that is at least **_size_** bytes big.
On linux this function is called _malloc_. On linux this function is called _malloc_.
#### `memory_free(address)` - function (void) #### `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_. On linux this function is called _free_.
#### `memory_allocator_init(base)` - function (void) #### `memory_allocator_init(base)` - function (void)