Adjusting some comments in ClangExpressionParser.cpp

llvm-svn: 341112
diff --git a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
index 9c913f5..64df1fd 100644
--- a/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
+++ b/lldb/source/Plugins/ExpressionParser/Clang/ClangExpressionParser.cpp
@@ -706,7 +706,7 @@
           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 @@
         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: