fix(curriculum): look for inlined filter function (#41953)

pull/41958/head
Sem Bauke 2021-04-30 21:55:16 +02:00 committed by GitHub
parent 2eac236e39
commit 9c28a2300a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ assert(
Your code should use the `filter` method.
```js
assert(code.match(/\.filter/g));
assert(code.match(/\s*\.\s*filter/g));
```
Your code should not use a `for` loop.