diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index 4ee953f1838e..0fd7a744b38a 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -5419,7 +5419,7 @@ alignof.
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/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index 6a5224febab5..6c1c8e4428cf 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/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