diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js index a030c17..ca7d759 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