Merge pull request #99 from linkwk7/fix_typo_in_comments

Fix typo in comment
This commit is contained in:
Daan 2019-07-14 14:33:12 -07:00 committed by GitHub
commit 36a16ca7eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -173,7 +173,7 @@ void _mi_page_free_collect(mi_page_t* page) {
// free the local free list // free the local free list
if (page->local_free != NULL) { if (page->local_free != NULL) {
if (mi_likely(page->free == NULL)) { if (mi_likely(page->free == NULL)) {
// usual caes // usual case
page->free = page->local_free; page->free = page->local_free;
} }
else { else {