From 47b54475a2509682cb3ea560a2ad2f4d099fe60b Mon Sep 17 00:00:00 2001 From: Nathan Whittaker Date: Thu, 20 Jul 2023 12:11:05 -0400 Subject: [PATCH] Fix typo in description of `required` attribute (#28085) * Update index.md * Update index.md --------- Co-authored-by: Joshua Chen --- files/en-us/web/html/element/input/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/html/element/input/index.md b/files/en-us/web/html/element/input/index.md index 03e73a3295b739c..b65e6481c22d8ad 100644 --- a/files/en-us/web/html/element/input/index.md +++ b/files/en-us/web/html/element/input/index.md @@ -345,7 +345,7 @@ Attributes for the `` element include the [global HTML attributes](/en-US | [`popovertarget`](#popovertarget) | `button` | Designates an `` as a control for a popover element | | [`popovertargetaction`](#popovertargetaction) | `button` | Specifies the action that a popover control should perform | | [`readonly`](#readonly) | all except `hidden`, `range`, `color`, `checkbox`, `radio`, and buttons | Boolean. The value is not editable | -| [`required`](#required) | all except `hidden`, `range`, `color`, and buttons | Boolean. A value is required or must be check for the form to be submittable | +| [`required`](#required) | all except `hidden`, `range`, `color`, and buttons | Boolean. A value is required or must be checked for the form to be submittable | | [`size`](#size) | `text`, `search`, `url`, `tel`, `email`, `password` | Size of the control | | [`src`](#src) | `image` | Same as `src` attribute for {{htmlelement('img')}}; address of image resource | | [`step`](#step) | `date`, `month`, `week`, `time`, `datetime-local`, `number`, `range` | Incremental values that are valid |