From f1392707668797cff244e892c4cbe240d7d67e8c Mon Sep 17 00:00:00 2001 From: Loic Bersier Date: Thu, 27 Sep 2018 15:33:22 +0200 Subject: [PATCH] Fixed typo --- commands/utility/feedback.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js index a030c17b..ca7d7596 100644 --- a/commands/utility/feedback.js +++ b/commands/utility/feedback.js @@ -10,7 +10,7 @@ module.exports = class sayCommand extends Command { args: [ { key: 'text', - prompt: 'What do you want to send as a feedback?', + prompt: 'What would you want to send as feedback?', type: 'string', } ] @@ -20,6 +20,6 @@ module.exports = class sayCommand extends Command { async run(message, { text }) { const channel = this.client.channels.get(feedbackChannel); channel.send(`from ${message.author}: ${text}`); - message.say('Your feedback have been sent!'); + message.say('Your feedback has been sent!'); } }; \ No newline at end of file