From 68c767254a721bdc591d39c13e6c04691e055712 Mon Sep 17 00:00:00 2001 From: Sean McBride Date: Sat, 18 Jul 2020 09:16:57 -0400 Subject: [PATCH] docs: fix case in comment --- runtime/include/arch/common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/include/arch/common.h b/runtime/include/arch/common.h index d65fcec..f694647 100644 --- a/runtime/include/arch/common.h +++ b/runtime/include/arch/common.h @@ -44,7 +44,7 @@ struct arch_context { */ extern __thread struct arch_context worker_thread_base_context; -/* Cannot be inlined because called in Assembly */ +/* Cannot be inlined because called in assembly */ void __attribute__((noinline)) __attribute__((noreturn)) arch_context_mcontext_restore(void); extern __thread volatile bool worker_thread_is_switching_context;