Update the download contents to use the superior period

This commit is contained in:
Nick Chambers 2021-01-10 00:58:10 -06:00
parent 4616143ffa
commit a9640c204f
1 changed files with 1 additions and 1 deletions

View File

@ -471,7 +471,7 @@
let padding = Math.floor(Math.log10(game.length));
for(let entry = 0; entry < game.length; entry += 1) {
var line = `${entry + 1}`.padStart(padding + 1, " ") + ": ";
var line = `${entry + 1}`.padStart(padding + 1, " ") + ". ";
if(game[entry][1] !== undefined) {
line += `${game[entry][0].padEnd(longest, " ")} ${game[entry][1]}`;