mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-03-04 17:01:16 -05:00
chore(curriculum): fixed variable name in spam filter project (#50272)
fixed variable name in spam filter project
This commit is contained in:
@@ -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\|\^)\)/);
|
||||
|
||||
Reference in New Issue
Block a user