]> granicus.if.org Git - clang/commitdiff
[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)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@286628 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index fa68fab58b961fae9946ed59229a4060fd1cd92e..b558e7e5eb1ffb079f7c43aac9560e0082df856a 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