Skip to content

Commit bf5a310

Browse files
authored
Fix typo (#1485)
1 parent 7e5f2e9 commit bf5a310

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/rules/no-template-target-blank.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
2222
2323
<!-- ✗ BAD -->
2424
<a href="http://example.com" target="_blank" >link</a>
25-
</temlate>
25+
</template>
2626
```
2727

2828
</eslint-code-block>
@@ -52,7 +52,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
5252
5353
<!-- ✗ BAD -->
5454
<a href="http://example.com" target="_blank" rel="noopener">link</a>
55-
</temlate>
55+
</template>
5656
```
5757

5858
</eslint-code-block>
@@ -68,7 +68,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
6868
6969
<!-- ✗ BAD -->
7070
<a href="http://example.com" target="_blank" >link</a>
71-
</temlate>
71+
</template>
7272
```
7373

7474
</eslint-code-block>
@@ -84,7 +84,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
8484
8585
<!-- ✗ BAD -->
8686
<a :href="link" target="_blank">link</a>
87-
</temlate>
87+
</template>
8888
```
8989

9090
</eslint-code-block>
@@ -100,7 +100,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
100100
101101
<!-- ✗ BAD -->
102102
<a href="http://example.com" target="_blank" >link</a>
103-
</temlate>
103+
</template>
104104
```
105105

106106
</eslint-code-block>

0 commit comments

Comments
 (0)