Fix AST matcher documentation typo

llvm-svn: 317993
This commit is contained in:
Dave Lee 2017-11-11 23:53:27 +00:00
parent 0934fdc3a5
commit bfb990b783
2 changed files with 2 additions and 2 deletions

View File

@ -1255,7 +1255,7 @@ NSString's "alloc". This matcher should match both message sends.
<tr><td>Matcher&lt;<a href="http://clang.llvm.org/doxygen/classclang_1_1Stmt.html">Stmt</a>&gt;</td><td class="name" onclick="toggle('objcThrowStmt0')"><a name="objcThrowStmt0Anchor">objcThrowStmt</a></td><td>Matcher&lt;<a href="http://clang.llvm.org/doxygen/classclang_1_1ObjCAtThrowStmt.html">ObjCAtThrowStmt</a>&gt;...</td></tr>
<tr><td colspan="4" class="doc" id="objcThrowStmt0"><pre>Matches Objective-C @try statements.
<tr><td colspan="4" class="doc" id="objcThrowStmt0"><pre>Matches Objective-C @throw statements.
Example matches @throw
@throw obj;

View File

@ -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