From 256317d4ccea0ede0fd2cb5aaeaa203196a76e98 Mon Sep 17 00:00:00 2001 From: Joaquin Descotte <157441085+Joaco273@users.noreply.github.com> Date: Thu, 16 Jan 2025 00:21:41 -0500 Subject: [PATCH] fix(curriculum): update description for hint analyzer (#58167) --- .../workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md b/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md index 49a05d6554a..f40f82f0a08 100644 --- a/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md +++ b/curriculum/challenges/english/25-front-end-development/workshop-sentence-analyzer/66e2e5d890ac8a54c9d703bd.md @@ -9,7 +9,7 @@ dashedName: step-3 It's time to count the consonants. Create a `getConsonantCount` function with a `sentence` parameter. -Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is anything that is not the following characters: `"aeiou"`. +Inside the function, use a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called. A consonant is any letter that is not one of the following characters: `"aeiou"`. Your `getConsonantCount` function must return a number.