Skip to content

Commit

Permalink
fix(curriculum): allow spaces before the colon in step 9 of the music…
Browse files Browse the repository at this point in the history
… player project (#52883)
  • Loading branch information
a2937 committed Jan 3, 2024
1 parent 5562acf commit 0d123e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Inside the `userData` object create a `songs` property. For the value, spread `a
Your `userData` object should have a `songs` key set to `[...allSongs]`.

```js
assert.match(code, /songs:\s*\[\.\.\.allSongs\],?/);
assert.match(code, /songs\s*:\s*\[\.\.\.allSongs\],?/);
```

# --seed--
Expand Down

0 comments on commit 0d123e0

Please sign in to comment.