aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitri Gribenko <gribozavr@gmail.com>2012-08-20 16:48:14 +0000
committerDmitri Gribenko <gribozavr@gmail.com>2012-08-20 16:48:14 +0000
commite50ee7e513c0707302bd8e2a78befc318a7d593c (patch)
tree6c9c165d0d3dd00167eaf6c2d0882236ea6f2a77
parent25466496a2ace2aa533abc7bac1e92a4f425e2b1 (diff)
Use correct matcher name in the comment.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162206 91177308-0d34-0410-b5e6-96231b3b80d8
-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 e0d786a6bc..8e797c11fc 100644
--- a/include/clang/ASTMatchers/ASTMatchers.h
+++ b/include/clang/ASTMatchers/ASTMatchers.h
@@ -2248,7 +2248,7 @@ isTemplateInstantiation() {
/// template<typename T> void A(T t) { }
/// template<> void A(int N) { }
/// \endcode
-/// function(isExplicitSpecialization())
+/// function(isExplicitTemplateSpecialization())
/// matches the specialization A<int>().
///
/// Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl>