From: Hiroshi Inoue Date: Thu, 22 Feb 2018 07:49:13 +0000 (+0000) Subject: [NFC] fix trivial typos in comments X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0972dc790621cb6c6718ef9a5090a993cc0724c2;p=clang [NFC] fix trivial typos in comments "a a"->"a" git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@325753 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/clang/Sema/ScopeInfo.h b/include/clang/Sema/ScopeInfo.h index 5f96f59563..eedc5013b8 100644 --- a/include/clang/Sema/ScopeInfo.h +++ b/include/clang/Sema/ScopeInfo.h @@ -799,7 +799,7 @@ public: /// Potentially capturable variables of a nested lambda that might need /// to be captured by the lambda are housed here. /// This is specifically useful for generic lambdas or - /// lambdas within a a potentially evaluated-if-used context. + /// lambdas within a potentially evaluated-if-used context. /// If an enclosing variable is named in an expression of a lambda nested /// within a generic lambda, we don't always know know whether the variable /// will truly be odr-used (i.e. need to be captured) by that nested lambda, diff --git a/test/SemaCXX/ms-uuid.cpp b/test/SemaCXX/ms-uuid.cpp index e29dda878e..c26ea688e3 100644 --- a/test/SemaCXX/ms-uuid.cpp +++ b/test/SemaCXX/ms-uuid.cpp @@ -23,7 +23,7 @@ namespace { // clang-cl implements the following simpler (but largely compatible) behavior // instead: // * [] and __declspec uuids have the same behavior. -// * If there are several uuids on a a class (no matter if on the same decl or +// * If there are several uuids on a class (no matter if on the same decl or // on several decls), it is an error if they don't match. // * Having several uuids that match is ok.