From 48b10ec0959528da39cae3fd1307a7317f854597 Mon Sep 17 00:00:00 2001 From: Yosuke Ota Date: Wed, 5 May 2021 09:11:54 +0900 Subject: [PATCH] Fix typo --- docs/rules/html-button-has-type.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/rules/html-button-has-type.md b/docs/rules/html-button-has-type.md index 5974f72da..24f997e6a 100644 --- a/docs/rules/html-button-has-type.md +++ b/docs/rules/html-button-has-type.md @@ -48,13 +48,13 @@ This rule aims to warn if no type or an invalid type is used on a button type at - `button` ... `` - `true` (default) ... allow value `button`. - - `false"` ... disallow value `button`. + - `false` ... disallow value `button`. - `submit` ... `` - `true` (default) ... allow value `submit`. - - `false"` ... disallow value `submit`. + - `false` ... disallow value `submit`. - `reset` ... `` - `true` (default) ... allow value `reset`. - - `false"` ... disallow value `reset`. + - `false` ... disallow value `reset`. ## :rocket: Version