From 5928f12b15845064745bf246e5a0ae03e919f5f0 Mon Sep 17 00:00:00 2001 From: Julian Fang Date: Wed, 10 Jul 2019 08:38:58 +0800 Subject: [PATCH] Fix typo numbes -> number --- include/mimalloc-types.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index b25250f7..4a1bb6e3 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -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