fix(curriculum): typo in sentence analyzer (#58190)

This commit is contained in:
Gagan Bhullar
2025-01-16 15:02:33 -07:00
committed by GitHub
parent c5511423f2
commit c8cc851390
@@ -11,7 +11,7 @@ You should count the number of punctuations now.
Create a `getPunctuationCount` function with a `sentence` parameter.
Inside the function, create a loop to count the number of consonants in the `sentence` that will be passed into the function when it is called.
Inside the function, create a loop to count the number of punctuation characters in the `sentence` that will be passed into the function when it is called.
Your `getPunctuationCount` function must return a number.