[ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC.
authorArtem Dergachev <artem.dergachev@gmail.com>
Fri, 11 Nov 2016 20:29:59 +0000 (20:29 +0000)
committerArtem Dergachev <artem.dergachev@gmail.com>
Fri, 11 Nov 2016 20:29:59 +0000 (20:29 +0000)
llvm-svn: 286628

clang/include/clang/ASTMatchers/ASTMatchers.h

index fa68fab..b558e7e 100644 (file)
@@ -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