From e7600adac6f83922f6311ec3432f322edd0a6f9f Mon Sep 17 00:00:00 2001 From: Artem Dergachev Date: Fri, 11 Nov 2016 22:34:53 +0000 Subject: [PATCH] [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 --- docs/LibASTMatchersReference.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;
 
-- 2.40.0