From: Artem Dergachev Date: Fri, 11 Nov 2016 20:29:59 +0000 (+0000) Subject: [ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=71aaafa8461e1b4bea194ee68c4cc0260d163c0c;p=clang [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 --- 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