From 71aaafa8461e1b4bea194ee68c4cc0260d163c0c Mon Sep 17 00:00:00 2001 From: Artem Dergachev Date: Fri, 11 Nov 2016 20:29:59 +0000 Subject: [PATCH] [ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@286628 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/clang/ASTMatchers/ASTMatchers.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/clang/ASTMatchers/ASTMatchers.h b/include/clang/ASTMatchers/ASTMatchers.h index fa68fab58b..b558e7e5eb 100644 --- a/include/clang/ASTMatchers/ASTMatchers.h +++ b/include/clang/ASTMatchers/ASTMatchers.h @@ -1909,7 +1909,7 @@ const internal::VariadicDynCastAllOfMatcher< /// \brief Matches a C-style cast expression. /// -/// Example: Matches (int*) 2.2f in +/// Example: Matches (int) 2.2f in /// \code /// int i = (int) 2.2f; /// \endcode -- 2.40.0