Merge pull request #449 from bmalrat/FixTypo

Fixed typo in header
This commit is contained in:
Daan
2021-10-19 10:24:54 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -333,7 +333,7 @@ void mi_heap_destroy(mi_heap_t* heap) {
Safe Heap delete
----------------------------------------------------------- */
// Tranfer the pages from one heap to the other
// Transfer the pages from one heap to the other
static void mi_heap_absorb(mi_heap_t* heap, mi_heap_t* from) {
mi_assert_internal(heap!=NULL);
if (from==NULL || from->page_count == 0) return;