From ade9bd9287fcdd730a7562811d0e50a6899a6cf2 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Tue, 12 Jul 2022 01:30:28 +0900 Subject: [PATCH] stage1: fix typo in analyze.cpp (#12077) accomodate -> accommodate --- src/stage1/analyze.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stage1/analyze.cpp b/src/stage1/analyze.cpp index 9a6a526ae..08aa8bbf0 100644 --- a/src/stage1/analyze.cpp +++ b/src/stage1/analyze.cpp @@ -2781,7 +2781,7 @@ static Error type_is_valid_extern_enum_tag(CodeGen *g, ZigType *ty, bool *result // According to the ANSI C standard the enumeration type should be either a // signed char, a signed integer or an unsigned one. But GCC/Clang allow - // other integral types as a compiler extension so let's accomodate them + // other integral types as a compiler extension so let's accommodate them // aswell. return type_allowed_in_extern(g, ty, ExternPositionOther, result); }