diff options
author | Daan <daan@microsoft.com> | 2019-06-22 08:20:07 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-22 08:20:07 -0700 |
commit | 8ba50d63f280b92d24100a5942979f83295e0c5c (patch) | |
tree | 4f848db1a3963163bd1228248234a649f0ab1981 /include/mimalloc-types.h | |
parent | 6208e51415afb0f0336f7b231b55db7adddf49ab (diff) | |
parent | def97b0fd14dbdabad5a8c1a9e4ac56ee5bd51bb (diff) |
Merge pull request #1 from chosungmann/fix-spelling-errors
Fix spelling errors
Diffstat (limited to 'include/mimalloc-types.h')
-rw-r--r-- | include/mimalloc-types.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/mimalloc-types.h b/include/mimalloc-types.h index 3fc3bb1..6fa8281 100644 --- a/include/mimalloc-types.h +++ b/include/mimalloc-types.h @@ -96,7 +96,7 @@ terms of the MIT license. A copy of the license can be found in the file // Maximum number of size classes. (spaced exponentially in 16.7% increments) #define MI_BIN_HUGE (64U) -// Minimal aligment necessary. On most platforms 16 bytes are needed +// Minimal alignment necessary. On most platforms 16 bytes are needed // due to SSE registers for example. This must be at least `MI_INTPTR_SIZE` #define MI_MAX_ALIGN_SIZE 16 // sizeof(max_align_t) @@ -150,7 +150,7 @@ typedef union mi_thread_free_u { // `thread_free` for freed blocks by other threads // The `local_free` and `thread_free` lists are migrated to the `free` list // when it is exhausted. The separate `local_free` list is necessary to -// implement a monotonic heartbeat. The `thead_free` list is needed for +// implement a monotonic heartbeat. The `thread_free` list is needed for // avoiding atomic operations in the common case. // // `used - thread_freed` == actual blocks that are in use (alive) |