From 1fc87b400b07a34fd88e8bf2eaf8e7c927ba159e Mon Sep 17 00:00:00 2001 From: Dragon Fire Date: Wed, 30 Sep 2020 13:10:47 -0400 Subject: [PATCH] Fix Lint --- commands/events/us-election.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/events/us-election.js b/commands/events/us-election.js index 33dc010b..6fd8a739 100644 --- a/commands/events/us-election.js +++ b/commands/events/us-election.js @@ -30,7 +30,7 @@ module.exports = class UsElectionCommand extends Command { try { const { winners, simulations } = await this.getList(); const chances = Object.entries(winners) - .map(([canidate, chances]) => `**${canidate}:** ${chances} in ${simulations}`); + .map(([canidate, chance]) => `**${canidate}:** ${chance} in ${simulations}`); return msg.say(stripIndents` __**Chances of Winning the 2020 US Presidential Election (Accoring to FiveThirtyEight):**__ ${chances.join('\n')}