Skip to content

Commit 92b9dc8

Browse files
authored
Fix tiny typo in docs
1 parent 03bd27a commit 92b9dc8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

public/examples/scoreboard.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"\t\tgetSorted = createMemo((list = []) => {",
3131
"\t\t\tlist.forEach((p, i) => lastPos.set(p, i));",
3232
"\t\t\tconst newList = state.players.slice().sort((a, b) => {",
33-
"\t\t\t\tif (b.score === a.score) return a.name.localeCompare(b.name); // stabalize the sort",
33+
"\t\t\t\tif (b.score === a.score) return a.name.localeCompare(b.name); // stabilize the sort",
3434
"\t\t\t\treturn b.score - a.score;",
3535
"\t\t\t});",
3636
"\t\t\tlet updated = newList.length !== list.length;",

0 commit comments

Comments
 (0)