diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html index 4cddea86991e..c0221c1c66fe 100644 --- a/clang/docs/LibASTMatchersReference.html +++ b/clang/docs/LibASTMatchersReference.html @@ -1255,7 +1255,7 @@ NSString's "alloc". This matcher should match both message sends. Matcher<Stmt>objcThrowStmtMatcher<ObjCAtThrowStmt>... -
Matches Objective-C @try statements.
+
Matches Objective-C @throw statements.
 
 Example matches @throw
   @throw obj;
diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h
index 34e6b42c6898..c2abb983eb28 100644
--- a/clang/include/clang/ASTMatchers/ASTMatchers.h
+++ b/clang/include/clang/ASTMatchers/ASTMatchers.h
@@ -1265,7 +1265,7 @@ const internal::VariadicDynCastAllOfMatcher<
   Decl,
   ObjCPropertyDecl> objcPropertyDecl;
 
-/// \brief Matches Objective-C @try statements.
+/// \brief Matches Objective-C @throw statements.
 ///
 /// Example matches @throw
 /// \code