Skip to content

Commit

Permalink
Fix typo (#1485)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed May 5, 2021
1 parent 7e5f2e9 commit bf5a310
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/rules/no-template-target-blank.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
<!-- ✗ BAD -->
<a href="http://example.com" target="_blank" >link</a>
</temlate>
</template>
```

</eslint-code-block>
Expand Down Expand Up @@ -52,7 +52,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
<!-- ✗ BAD -->
<a href="http://example.com" target="_blank" rel="noopener">link</a>
</temlate>
</template>
```

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

</eslint-code-block>
Expand All @@ -84,7 +84,7 @@ This rule disallows using `target="_blank"` attribute without `rel="noopener nor
<!-- ✗ BAD -->
<a :href="link" target="_blank">link</a>
</temlate>
</template>
```

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

</eslint-code-block>
Expand Down

0 comments on commit bf5a310

Please sign in to comment.