Skip to content

Commit

Permalink
Fix typo (#1486)
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed May 5, 2021
1 parent bf5a310 commit c775584
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/rules/html-button-has-type.md
Expand Up @@ -48,13 +48,13 @@ This rule aims to warn if no type or an invalid type is used on a button type at

- `button` ... `<button type="button"></button>`
- `true` (default) ... allow value `button`.
- `false"` ... disallow value `button`.
- `false` ... disallow value `button`.
- `submit` ... `<button type="submit"></button>`
- `true` (default) ... allow value `submit`.
- `false"` ... disallow value `submit`.
- `false` ... disallow value `submit`.
- `reset` ... `<button type="reset"></button>`
- `true` (default) ... allow value `reset`.
- `false"` ... disallow value `reset`.
- `false` ... disallow value `reset`.

## :rocket: Version

Expand Down

0 comments on commit c775584

Please sign in to comment.