mirror of
https://github.com/microsoft/mimalloc.git
synced 2025-05-04 14:39:31 +03:00
Fix typo numbes -> number
This commit is contained in:
parent
b40fe5178a
commit
5928f12b15
1 changed files with 1 additions and 1 deletions
|
@ -170,7 +170,7 @@ typedef struct mi_page_s {
|
|||
// layout like this to optimize access in `mi_malloc` and `mi_free`
|
||||
mi_page_flags_t flags;
|
||||
uint16_t capacity; // number of blocks committed
|
||||
uint16_t reserved; // numbes of blocks reserved in memory
|
||||
uint16_t reserved; // number of blocks reserved in memory
|
||||
|
||||
mi_block_t* free; // list of available free blocks (`malloc` allocates from this list)
|
||||
uintptr_t cookie; // random cookie to encode the free lists
|
||||
|
|
Loading…
Add table
Reference in a new issue