From 82a36b9fcce7f0f54b853094649f5bdaa95c9929 Mon Sep 17 00:00:00 2001 From: Haojian Wu Date: Fri, 29 Jul 2016 17:30:13 +0000 Subject: Fix a typo in document. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277174 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/LibASTMatchersReference.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/LibASTMatchersReference.html') diff --git a/docs/LibASTMatchersReference.html b/docs/LibASTMatchersReference.html index cb6a05e3e9..35534cb8c8 100644 --- a/docs/LibASTMatchersReference.html +++ b/docs/LibASTMatchersReference.html @@ -4260,7 +4260,7 @@ Given template<> class A<double> {}; A<int> a; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasAnyTemplateArgument( @@ -4281,7 +4281,7 @@ Given A<bool, int> b; A<int, bool> c; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasTemplateArgument( 1, refersToType(asString("int")))) @@ -4714,7 +4714,7 @@ Given template<> class A<double> {}; A<int> a; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasAnyTemplateArgument( @@ -4760,7 +4760,7 @@ Given A<bool, int> b; A<int, bool> c; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasTemplateArgument( 1, refersToType(asString("int")))) @@ -5400,7 +5400,7 @@ Given template<> class A<double> {}; A<int> a; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasAnyTemplateArgument( @@ -5443,7 +5443,7 @@ Given A<bool, int> b; A<int, bool> c; - template<typenmae T> f() {}; + template<typename T> f() {}; void func() { f<int>(); }; classTemplateSpecializationDecl(hasTemplateArgument( 1, refersToType(asString("int")))) -- cgit v1.2.3