[clangd] Fix typos and grammar in a comment. NFC
authorIlya Biryukov <ibiryukov@google.com>
Wed, 14 Aug 2019 10:49:32 +0000 (10:49 +0000)
committerIlya Biryukov <ibiryukov@google.com>
Wed, 14 Aug 2019 10:49:32 +0000 (10:49 +0000)
llvm-svn: 368824

clang-tools-extra/clangd/FindSymbols.cpp

index fcd725f..695f5f9 100644 (file)
@@ -176,14 +176,14 @@ llvm::Optional<DocumentSymbol> declToSym(ASTContext &Ctx, const NamedDecl &ND) {
   return SI;
 }
 
-/// A helper class to build an outline for the parse AST. It traverse the AST
+/// A helper class to build an outline for the parse AST. It traverses the AST
 /// directly instead of using RecursiveASTVisitor (RAV) for three main reasons:
-///    - there is no way to keep RAV from traversing subtrees we're not
+///    - there is no way to keep RAV from traversing subtrees we are not
 ///      interested in. E.g. not traversing function locals or implicit template
 ///      instantiations.
-///    - it's easier to combine results of recursive passes, e.g.
+///    - it's easier to combine results of recursive passes,
 ///    - visiting decls is actually simple, so we don't hit the complicated
-///      cases that RAV mostly helps with (types and expressions, etc.)
+///      cases that RAV mostly helps with (types, expressions, etc.)
 class DocumentOutline {
 public:
   DocumentOutline(ParsedAST &AST) : AST(AST) {}