chore(curriculum): fixed variable name in spam filter project (#50272)

fixed variable name in spam filter project
This commit is contained in:
Dario-DC 2023-05-04 11:08:59 +02:00 committed by GitHub
parent d02bb663c4
commit fc0b99a6cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ Your `dearRegex` should use a non-capturing group.
assert.match(dearRegex.source, /\(\?:/);
```
Your `stockRegex` should use a non-capturing group to match `\s` or `^`.
Your `dearRegex` should use a non-capturing group to match `\s` or `^`.
```js
assert.match(dearRegex.source, /\(\?:(\^\|\\s|\\s\|\^)\)/);