From: Artem Dergachev Date: Fri, 11 Nov 2016 22:34:53 +0000 (+0000) Subject: [ASTMatchers] Fix a typo in cStyleCastExpr() HTML docs as well. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e7600adac6f83922f6311ec3432f322edd0a6f9f;p=clang [ASTMatchers] Fix a typo in cStyleCastExpr() HTML docs as well. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@286651 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index b632d23273..367ecde1c1 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -599,7 +599,7 @@ breakStmt() Matcher<Stmt>cStyleCastExprMatcher<CStyleCastExpr>...
Matches a C-style cast expression.
 
-Example: Matches (int*) 2.2f in
+Example: Matches (int) 2.2f in
   int i = (int) 2.2f;