r286628 - [ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC.

Artem Dergachev via cfe-commits cfe-commits at lists.llvm.org
Fri Nov 11 12:29:59 PST 2016


Author: dergachev
Date: Fri Nov 11 14:29:59 2016
New Revision: 286628

URL: http://llvm.org/viewvc/llvm-project?rev=286628&view=rev
Log:
[ASTMatchers] Fix a typo in cStyleCastExpr() docs. NFC.

Modified:
    cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h

Modified: cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h?rev=286628&r1=286627&r2=286628&view=diff
==============================================================================
--- cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h (original)
+++ cfe/trunk/include/clang/ASTMatchers/ASTMatchers.h Fri Nov 11 14:29:59 2016
@@ -1909,7 +1909,7 @@ const internal::VariadicDynCastAllOfMatc
 
 /// \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




More information about the cfe-commits mailing list