From 98a0d3ecd2014e3b9af66525dd0cb221469a3fa5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Alberto=20Gonz=C3=A1lez?= Date: Tue, 25 Jan 2022 23:15:58 +0000 Subject: [PATCH] correcting typo adaquate = adequate (#44906) --- .../learn-accessibility-by-building-a-quiz/step-028.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);