summaryrefslogtreecommitdiff
path: root/docs/LibASTMatchersReference.html
diff options
context:
space:
mode:
authorHaojian Wu <hokein@google.com>2016-07-29 17:30:13 +0000
committerHaojian Wu <hokein@google.com>2016-07-29 17:30:13 +0000
commit82a36b9fcce7f0f54b853094649f5bdaa95c9929 (patch)
tree2d338a39be0af14d89b7ab242c1eb93064ce6200 /docs/LibASTMatchersReference.html
parent8cbdbbd822c9f1763389b40d962bd2f892f6a5a4 (diff)
Fix a typo in document.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@277174 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/LibASTMatchersReference.html')
-rw-r--r--docs/LibASTMatchersReference.html12
1 files changed, 6 insertions, 6 deletions
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&lt;&gt; class A&lt;double&gt; {};
A&lt;int&gt; a;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasAnyTemplateArgument(
@@ -4281,7 +4281,7 @@ Given
A&lt;bool, int&gt; b;
A&lt;int, bool&gt; c;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasTemplateArgument(
1, refersToType(asString("int"))))
@@ -4714,7 +4714,7 @@ Given
template&lt;&gt; class A&lt;double&gt; {};
A&lt;int&gt; a;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasAnyTemplateArgument(
@@ -4760,7 +4760,7 @@ Given
A&lt;bool, int&gt; b;
A&lt;int, bool&gt; c;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasTemplateArgument(
1, refersToType(asString("int"))))
@@ -5400,7 +5400,7 @@ Given
template&lt;&gt; class A&lt;double&gt; {};
A&lt;int&gt; a;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasAnyTemplateArgument(
@@ -5443,7 +5443,7 @@ Given
A&lt;bool, int&gt; b;
A&lt;int, bool&gt; c;
- template&lt;typenmae T&gt; f() {};
+ template&lt;typename T&gt; f() {};
void func() { f&lt;int&gt;(); };
classTemplateSpecializationDecl(hasTemplateArgument(
1, refersToType(asString("int"))))