Skip to content

Commit

Permalink
Fix typo in object notation (#1808)
Browse files Browse the repository at this point in the history
  • Loading branch information
muneer-ahmed-khan authored Jun 28, 2022
1 parent c7f31e9 commit eedba99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/high-score-board/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Implement `updateScore`, which takes 3 parameters:
The function should return the score board after the update was done.

```javascript
updateScore({"Freyja Ćirić", 12771008}, "Freyja Ćirić", 73)
updateScore({ 'Freyja Ćirić': 12771008 }, 'Freyja Ćirić', 73);
// => {"Freyja Ćirić", 12771081}
```

Expand Down

0 comments on commit eedba99

Please sign in to comment.