mirror of
https://github.com/freeCodeCamp/freeCodeCamp.git
synced 2026-06-16 21:06:35 +08:00
chore(curriculum): fixed variable name in spam filter project (#50272)
fixed variable name in spam filter project
This commit is contained in:
parent
d02bb663c4
commit
fc0b99a6cb
@ -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\|\^)\)/);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user