From f40aaad87655b6d82b064b412fe93b29c7ab22ce Mon Sep 17 00:00:00 2001 From: Nicolas Date: Fri, 24 Apr 2020 23:20:28 -0300 Subject: [PATCH] Fix typo in comment Usuelly->Usually --- src/os.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/os.c b/src/os.c index 1c7e03c8..f33cfbc3 100644 --- a/src/os.c +++ b/src/os.c @@ -618,7 +618,7 @@ static void mi_mprotect_hint(int err) { } // Commit/Decommit memory. -// Usuelly commit is aligned liberal, while decommit is aligned conservative. +// Usually commit is aligned liberal, while decommit is aligned conservative. // (but not for the reset version where we want commit to be conservative as well) static bool mi_os_commitx(void* addr, size_t size, bool commit, bool conservative, bool* is_zero, mi_stats_t* stats) { // page align in the range, commit liberally, decommit conservative