From 8311cef0d11a343068a713900a879ff0cdc0d036 Mon Sep 17 00:00:00 2001 From: unknown Date: Sat, 17 Apr 2021 15:08:25 -0300 Subject: [PATCH] Fix typo in comment it -> if in mimalloc-types.h --- 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 99024679..ddb0511d 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -270,7 +270,7 @@ typedef struct mi_segment_s { struct mi_segment_s* prev; size_t abandoned; // abandoned pages (i.e. the original owning thread stopped) (`abandoned <= used`) - size_t abandoned_visits; // count how often this segment is visited in the abandoned list (to force reclaim it it is too long) + size_t abandoned_visits; // count how often this segment is visited in the abandoned list (to force reclaim if it is too long) size_t used; // count of pages in use (`used <= capacity`) size_t capacity; // count of available pages (`#free + used`)