diff --git a/src/structures/interfaces/InteractionResponses.js b/src/structures/interfaces/InteractionResponses.js index e18864d7e..239c69fbf 100644 --- a/src/structures/interfaces/InteractionResponses.js +++ b/src/structures/interfaces/InteractionResponses.js @@ -63,12 +63,12 @@ class InteractionResponses { * const embed = new MessageEmbed().setDescription('Pong!'); * * interaction.reply({ embeds: [embed] }) - * .then(console.log) + * .then(() => console.log('Reply sent.')) * .catch(console.error); * @example * // Create an ephemeral reply * interaction.reply({ content: 'Pong!', ephemeral: true }) - * .then(console.log) + * .then(() => console.log('Reply sent.')) * .catch(console.error); */ async reply(options) {