From 10fae3d41be65b97169576ea1b12839becdf0983 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Barreira=20Dinis?= <107752110+andrebdinis@users.noreply.github.com> Date: Tue, 4 Jun 2024 14:14:56 +0100 Subject: [PATCH] fix(curriculum): typo - changed "occurrence" to "occurrences" (#55082) --- .../642208bc4d44701c6fd6f65e.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-regular-expressions-by-building-a-spam-filter/642208bc4d44701c6fd6f65e.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-regular-expressions-by-building-a-spam-filter/642208bc4d44701c6fd6f65e.md index 6cadb0b8709..1bdf9431d04 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-regular-expressions-by-building-a-spam-filter/642208bc4d44701c6fd6f65e.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-regular-expressions-by-building-a-spam-filter/642208bc4d44701c6fd6f65e.md @@ -7,7 +7,7 @@ dashedName: step-16 # --description-- -The dollar value may be more than one digit. To match this, the `+` quantifier can be used - this matches one or more consecutive occurrence. For example, the regular expression `/a+/` matches one or more consecutive `a` characters. +The dollar value may be more than one digit. To match this, the `+` quantifier can be used - this matches one or more consecutive occurrences. For example, the regular expression `/a+/` matches one or more consecutive `a` characters. Update your regular expression to match one or more consecutive digits.