fix(curriculum): typo - changed "occurrence" to "occurrences" (#55082)

This commit is contained in:
André Barreira Dinis 2024-06-04 14:14:56 +01:00 committed by GitHub
parent fde6a505fd
commit 10fae3d41b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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.