From: Artem Dergachev Date: Fri, 11 Nov 2016 20:29:59 +0000 (+0000) Subject: [ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC. X-Git-Tag: llvmorg-4.0.0-rc1~4869 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d23982fb3cb45d24b019ff1021f4b0bfaa4af189;p=platform%2Fupstream%2Fllvm.git [ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC. llvm-svn: 286628 --- diff --git a/clang/include/clang/ASTMatchers/ASTMatchers.h b/clang/include/clang/ASTMatchers/ASTMatchers.h index fa68fab..b558e7e 100644 --- a/clang/include/clang/ASTMatchers/ASTMatchers.h +++ b/clang/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