diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md index d58f5461cf..a11e4b67c4 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-accessibility-by-building-a-quiz/step-028.md @@ -7,13 +7,13 @@ dashedName: step-28 # --description-- -Give each `fieldset` an adaquate `name` attribute. Then, give both unordered lists a `class` of `answers-list`. +Give each `fieldset` an adequate `name` attribute. Then, give both unordered lists a `class` of `answers-list`. Finally, use the `legend` to caption the content of the `fieldset` by placing a true/false question as the text content. # --hints-- -You should give the first `fieldset` an adaquate `name` attribute. _Hint: I would use `html-question-one`_ +You should give the first `fieldset` an adequate `name` attribute. _Hint: I would use `html-question-one`_ ```js assert.notEmpty(document.querySelectorAll('fieldset')?.[0]?.name);