]> granicus.if.org Git - clang/commitdiff
Use correct matcher name in the comment.
authorDmitri Gribenko <gribozavr@gmail.com>
Mon, 20 Aug 2012 16:48:14 +0000 (16:48 +0000)
committerDmitri Gribenko <gribozavr@gmail.com>
Mon, 20 Aug 2012 16:48:14 +0000 (16:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@162206 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/ASTMatchers/ASTMatchers.h

index e0d786a6bcc12d9fc966a36f4b3c31d051f81a3e..8e797c11fc5367d409b8d81da251451d640c030c 100644 (file)
@@ -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>