From 540f74796749282ae4cd28d01e66d3cabba93a3d Mon Sep 17 00:00:00 2001 From: Matthew R Date: Tue, 21 Jul 2020 04:18:38 -0400 Subject: [PATCH] typo fix --- src/commands/stats.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/stats.ts b/src/commands/stats.ts index ba3b28c..6454ba3 100644 --- a/src/commands/stats.ts +++ b/src/commands/stats.ts @@ -23,7 +23,7 @@ export default class Stats extends Command { embed.setTitle('Statistics'); embed.setThumbnail(this.client.user.avatarURL); embed.addField('Messages Seen', `${messages.value}`, true); - embed.addField('Command Executed', `${commands.value}`, true); + embed.addField('Commands Executed', `${commands.value}`, true); embed.addField('HTTP Requests Served', `${requests.value}`, true); embed.addField('Pages Sent', `${pages.value}`, true); embed.setFooter(this.client.user.username, this.client.user.avatarURL);