Use correct matcher name in the comment.

llvm-svn: 162206
This commit is contained in:
Dmitri Gribenko 2012-08-20 16:48:14 +00:00
parent 4f3ecf1ce0
commit b1cfa19b5a
1 changed files with 1 additions and 1 deletions

View File

@ -2248,7 +2248,7 @@ isTemplateInstantiation() {
/// template<typename T> void A(T t) { } /// template<typename T> void A(T t) { }
/// template<> void A(int N) { } /// template<> void A(int N) { }
/// \endcode /// \endcode
/// function(isExplicitSpecialization()) /// function(isExplicitTemplateSpecialization())
/// matches the specialization A<int>(). /// matches the specialization A<int>().
/// ///
/// Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl> /// Usable as: Matcher<FunctionDecl>, Matcher<VarDecl>, Matcher<CXXRecordDecl>