From 4e003c16fb59c158dc3b242a4d811aa30e9ee42c Mon Sep 17 00:00:00 2001 From: Malcolm Parsons Date: Fri, 20 Jan 2017 09:54:26 +0000 Subject: [PATCH] Fix documentation typo. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@292595 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LibASTMatchersReference.html | 2 +- include/clang/ASTMatchers/ASTMatchers.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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
-- 
2.40.0