summaryrefslogtreecommitdiffstats
path: root/include/clang/ASTMatchers
diff options
context:
space:
mode:
authorArtem Dergachev <artem.dergachev@gmail.com>2016-11-11 20:29:59 +0000
committerArtem Dergachev <artem.dergachev@gmail.com>2016-11-11 20:29:59 +0000
commit71aaafa8461e1b4bea194ee68c4cc0260d163c0c (patch)
tree588ed8c017e36ebdf53cd4f2aa6e2cd6ada442e2 /include/clang/ASTMatchers
parentbfcd38dc0e78cb2f19dac27862d5a5cd138a640e (diff)
[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
Diffstat (limited to 'include/clang/ASTMatchers')
-rw-r--r--include/clang/ASTMatchers/ASTMatchers.h2
1 files changed, 1 insertions, 1 deletions
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