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 7e7c96c06a..d58f5461cf 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 @@ -19,7 +19,7 @@ You should give the first `fieldset` an adaquate `name` attribute. _Hint: I woul assert.notEmpty(document.querySelectorAll('fieldset')?.[0]?.name); ``` -You should give the second `fieldset` an adaquate `name` attribute. _Hint: I would use `html-question-two`_ +You should give the second `fieldset` an adequate `name` attribute. _Hint: I would use `html-question-two`_ ```js assert.notEmpty(document.querySelectorAll('fieldset')?.[1]?.name);