From e2190f376f6204e82bf55c6cf3c3353974cbae93 Mon Sep 17 00:00:00 2001 From: theodus Date: Tue, 15 Jan 2019 15:35:44 -0500 Subject: [PATCH] Fix typo in threadalloc.h --- src/mem/threadalloc.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mem/threadalloc.h b/src/mem/threadalloc.h index 80fd4da8..8914aec8 100644 --- a/src/mem/threadalloc.h +++ b/src/mem/threadalloc.h @@ -13,13 +13,13 @@ namespace snmalloc #ifdef SNMALLOC_EXTERNAL_THREAD_ALLOC /** - * Version of the `ThreadAlloc` interface that does no managment of thread + * Version of the `ThreadAlloc` interface that does no management of thread * local state, and just assumes that "ThreadAllocUntyped::get" has been * declared before including snmalloc.h. As it is included before, it cannot * know the allocator type, hence the casting. * * This class is used only when snmalloc is compiled as part of a runtime, - * which has its own managment of the thread local allocator pointer. + * which has its own management of the thread local allocator pointer. */ class ThreadAllocUntypedWrapper {