From: Malcolm Parsons Date: Fri, 20 Jan 2017 09:54:26 +0000 (+0000) Subject: Fix documentation typo. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4e003c16fb59c158dc3b242a4d811aa30e9ee42c;p=clang Fix documentation typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@292595 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index 4ee953f183..0fd7a744b3 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -5419,7 +5419,7 @@ alignof. Matcher<Stmt>forFunctionMatcher<FunctionDecl> InnerMatcher -
Matches declaration of the function the statemenet belongs to
+
Matches declaration of the function the statement belongs to
 
 Given:
 F& operator=(const F& o) {
diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h
index 6a5224feba..6c1c8e4428 100644
--- a/include/clang/ASTMatchers/ASTMatchers.h
+++ b/include/clang/ASTMatchers/ASTMatchers.h
@@ -5507,7 +5507,7 @@ AST_MATCHER_FUNCTION(internal::Matcher, nullPointerConstant) {
       integerLiteral(equals(0), hasParent(expr(hasType(pointerType())))));
 }
 
-/// \brief Matches declaration of the function the statemenet belongs to
+/// \brief Matches declaration of the function the statement belongs to
 ///
 /// Given:
 /// \code