Fix a typo in document.
llvm-svn: 277174
diff --git a/clang/docs/LibASTMatchersReference.html b/clang/docs/LibASTMatchersReference.html
index cb6a05e..35534cb 100644
--- a/clang/docs/LibASTMatchersReference.html
+++ b/clang/docs/LibASTMatchersReference.html
@@ -4260,7 +4260,7 @@
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 @@
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 @@
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 @@
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 @@
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 @@
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"))))