fix(curriculum): regex typo (#53471)

This commit is contained in:
Krzysztof G 2024-02-01 13:53:34 +01:00 committed by GitHub
parent 105fdd09b4
commit 51a5d6ef56
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,7 +23,7 @@ Add the `sort()` method to `userData?.songs`.
You should add the `sort()` method to `userData?.songs`.
```js
assert.match(code, /userData\?\.songs\.sort\(*.\);?/);
assert.match(code, /userData\?\.songs\.sort\(.*\);?/);
```
# --seed--