diff --git a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.md b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.md index 16adab5cbb2..30de716ef90 100644 --- a/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.md +++ b/curriculum/challenges/english/01-responsive-web-design/responsive-web-design-projects/build-a-survey-form.md @@ -182,21 +182,21 @@ const el = document.getElementById('number-label') assert(!!el && el.tagName === 'LABEL') ``` -Your `#name-label` should not be empty +Your `#name-label` should contain text that describes the input. ```js const el = document.getElementById('name-label') assert(!!el && el.innerText.length > 0) ``` -Your `#email-label` should not be empty +Your `#email-label` should contain text that describes the input. ```js const el = document.getElementById('email-label') assert(!!el && el.innerText.length > 0) ``` -Your `#number-label` should not be empty +Your `#number-label` should contain text that describes the input. ```js const el = document.getElementById('number-label') diff --git a/curriculum/challenges/english/14-responsive-web-design-22/build-a-survey-form-project/build-a-survey-form.md b/curriculum/challenges/english/14-responsive-web-design-22/build-a-survey-form-project/build-a-survey-form.md index 17436a2fe93..727bb66d142 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/build-a-survey-form-project/build-a-survey-form.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/build-a-survey-form-project/build-a-survey-form.md @@ -182,21 +182,21 @@ const el = document.getElementById('number-label') assert(!!el && el.tagName === 'LABEL') ``` -Your `#name-label` should not be empty. +Your `#name-label` should contain text that describes the input. ```js const el = document.getElementById('name-label') assert(!!el && el.innerText.length > 0) ``` -Your `#email-label` should not be empty. +Your `#email-label` should contain text that describes the input. ```js const el = document.getElementById('email-label') assert(!!el && el.innerText.length > 0) ``` -Your `#number-label` should not be empty. +Your `#number-label` should contain text that describes the input. ```js const el = document.getElementById('number-label')