From 64276eec7ed07e762ef90c248a36cbafdcd7bd81 Mon Sep 17 00:00:00 2001 From: Ilyas Mustafazade Date: Tue, 21 Mar 2023 13:29:05 +0100 Subject: [PATCH] [clang][NFC] Fix typo in comment Differential Revision: https://reviews.llvm.org/D146422 --- clang/lib/Sema/SemaInit.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clang/lib/Sema/SemaInit.cpp b/clang/lib/Sema/SemaInit.cpp index ddb2b5c..17d8b6c 100644 --- a/clang/lib/Sema/SemaInit.cpp +++ b/clang/lib/Sema/SemaInit.cpp @@ -5437,7 +5437,7 @@ static void TryOrBuildParenListInitialization( } // Not all of the args have been processed, so there must've been more args - // then were required to initialize the element. + // than were required to initialize the element. if (ArgIndexToProcess < Args.size()) { Sequence.SetFailed(InitializationSequence::FK_ParenthesizedListInitFailed); if (!VerifyOnly) { -- 2.7.4