Adjusting some comments in ClangExpressionParser.cpp
authorRaphael Isemann <teemperor@gmail.com>
Thu, 30 Aug 2018 20:19:57 +0000 (20:19 +0000)
committerRaphael Isemann <teemperor@gmail.com>
Thu, 30 Aug 2018 20:19:57 +0000 (20:19 +0000)
llvm-svn: 341112

lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp

index 9c913f5..64df1fd 100644 (file)
@@ -706,7 +706,7 @@ public:
           else
             ToInsert += "(";
         }
-        // If we try to complete a namespace, then we directly can append
+        // If we try to complete a namespace, then we can directly append
         // the '::'.
         if (const NamespaceDecl *N = dyn_cast<NamespaceDecl>(D)) {
           if (!N->isAnonymousNamespace())
@@ -718,7 +718,6 @@ public:
         ToInsert = R.Keyword;
         break;
       case CodeCompletionResult::RK_Macro:
-        // It's not clear if we want to complete any macros in the
         ToInsert = R.Macro->getName().str();
         break;
       case CodeCompletionResult::RK_Pattern: