Skip to content

Commit eedba99

Browse files
Fix typo in object notation (#1808)
1 parent c7f31e9 commit eedba99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: exercises/concept/high-score-board/.docs/instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Implement `updateScore`, which takes 3 parameters:
6464
The function should return the score board after the update was done.
6565

6666
```javascript
67-
updateScore({"Freyja Ćirić", 12771008}, "Freyja Ćirić", 73)
67+
updateScore({ 'Freyja Ćirić': 12771008 }, 'Freyja Ćirić', 73);
6868
// => {"Freyja Ćirić", 12771081}
6969
```
7070

0 commit comments

Comments
 (0)