r325753 - [NFC] fix trivial typos in comments

Hiroshi Inoue via cfe-commits cfe-commits at lists.llvm.org
Wed Feb 21 23:49:13 PST 2018


Author: inouehrs
Date: Wed Feb 21 23:49:13 2018
New Revision: 325753

URL: http://llvm.org/viewvc/llvm-project?rev=325753&view=rev
Log:
[NFC] fix trivial typos in comments

"a a"->"a"

Modified:
    cfe/trunk/include/clang/Sema/ScopeInfo.h
    cfe/trunk/test/SemaCXX/ms-uuid.cpp

Modified: cfe/trunk/include/clang/Sema/ScopeInfo.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/Sema/ScopeInfo.h?rev=325753&r1=325752&r2=325753&view=diff
==============================================================================
--- cfe/trunk/include/clang/Sema/ScopeInfo.h (original)
+++ cfe/trunk/include/clang/Sema/ScopeInfo.h Wed Feb 21 23:49:13 2018
@@ -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,

Modified: cfe/trunk/test/SemaCXX/ms-uuid.cpp
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/SemaCXX/ms-uuid.cpp?rev=325753&r1=325752&r2=325753&view=diff
==============================================================================
--- cfe/trunk/test/SemaCXX/ms-uuid.cpp (original)
+++ cfe/trunk/test/SemaCXX/ms-uuid.cpp Wed Feb 21 23:49:13 2018
@@ -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.
 




More information about the cfe-commits mailing list