From f4d6683adb7b5f8ebb37aeb33e290c2b0b4fe178 Mon Sep 17 00:00:00 2001 From: Supravisor <153783117+Supravisor@users.noreply.github.com> Date: Thu, 13 Mar 2025 18:29:06 +1300 Subject: [PATCH] fix(curriculum): article typo (#59233) --- .../615f34ecc1091b4fd5a8a484.md | 2 +- .../6581950a4e5ca237a17d1a02.md | 2 +- .../672a54ce90c19e9038f481d7.md | 2 +- .../67326c0d7bef01c539120766.md | 2 +- .../workshop-nutritional-label/615f34ecc1091b4fd5a8a484.md | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md index 986fa607633..9ebed36bb4c 100644 --- a/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md +++ b/curriculum/challenges/english/14-responsive-web-design-22/learn-typography-by-building-a-nutrition-label/615f34ecc1091b4fd5a8a484.md @@ -21,7 +21,7 @@ Your code should have two `link` elements. assert.strictEqual(document.querySelectorAll('link').length, 2); ``` -Your `link` elements should be void elements, they should not have a end tag ``. +Your `link` elements should be void elements, they should not have an end tag ``. ```js assert.notMatch(code, /<\/link>/); diff --git a/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-have-a-conversation-about-preferences-and-motivations/6581950a4e5ca237a17d1a02.md b/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-have-a-conversation-about-preferences-and-motivations/6581950a4e5ca237a17d1a02.md index 6d2511133be..cdfbf054bf0 100644 --- a/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-have-a-conversation-about-preferences-and-motivations/6581950a4e5ca237a17d1a02.md +++ b/curriculum/challenges/english/21-a2-english-for-developers/learn-how-to-have-a-conversation-about-preferences-and-motivations/6581950a4e5ca237a17d1a02.md @@ -33,7 +33,7 @@ This word means one more or an extra thing. This word is capitalized. ### --feedback-- -This word is part of a expression that means something is making Tom upset or annoyed. +This word is part of an expression that means something is making Tom upset or annoyed. --- diff --git a/curriculum/challenges/english/25-front-end-development/lecture-importance-of-accessibility-and-good-html-structure/672a54ce90c19e9038f481d7.md b/curriculum/challenges/english/25-front-end-development/lecture-importance-of-accessibility-and-good-html-structure/672a54ce90c19e9038f481d7.md index 3ef632068c0..9c6dcb9188a 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-importance-of-accessibility-and-good-html-structure/672a54ce90c19e9038f481d7.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-importance-of-accessibility-and-good-html-structure/672a54ce90c19e9038f481d7.md @@ -18,7 +18,7 @@ The `aria-expanded` attribute is used for accessibility purposes to indicate if The information provided by `aria-expanded` allows people using screen readers to understand the current state of the control (whether it is expanded or collapsed). -The `aria-expanded` attribute is applied to the interactive element that toggles the visibility of a collapsible widget. For example, if a button toggles a expandable menu, the `aria-expanded` attribute is placed on the button. +The `aria-expanded` attribute is applied to the interactive element that toggles the visibility of a collapsible widget. For example, if a button toggles an expandable menu, the `aria-expanded` attribute is placed on the button. When the menu is expanded, the `aria-expanded` attribute should be set to `true` like in this example: diff --git a/curriculum/challenges/english/25-front-end-development/lecture-working-with-common-string-methods/67326c0d7bef01c539120766.md b/curriculum/challenges/english/25-front-end-development/lecture-working-with-common-string-methods/67326c0d7bef01c539120766.md index 4f9ef12b0bb..e6e3a12dcef 100644 --- a/curriculum/challenges/english/25-front-end-development/lecture-working-with-common-string-methods/67326c0d7bef01c539120766.md +++ b/curriculum/challenges/english/25-front-end-development/lecture-working-with-common-string-methods/67326c0d7bef01c539120766.md @@ -26,7 +26,7 @@ Here's the basic syntax: string.includes(searchValue); ``` -For the syntax, the `searchValue` is the substring you want to look for within the string. And here's a example: +For the syntax, the `searchValue` is the substring you want to look for within the string. And here's an example: ```js let phrase = "JavaScript is awesome!"; diff --git a/curriculum/challenges/english/25-front-end-development/workshop-nutritional-label/615f34ecc1091b4fd5a8a484.md b/curriculum/challenges/english/25-front-end-development/workshop-nutritional-label/615f34ecc1091b4fd5a8a484.md index 986fa607633..9ebed36bb4c 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-nutritional-label/615f34ecc1091b4fd5a8a484.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-nutritional-label/615f34ecc1091b4fd5a8a484.md @@ -21,7 +21,7 @@ Your code should have two `link` elements. assert.strictEqual(document.querySelectorAll('link').length, 2); ``` -Your `link` elements should be void elements, they should not have a end tag ``. +Your `link` elements should be void elements, they should not have an end tag ``. ```js assert.notMatch(code, /<\/link>/);