docs(*): add class links to isX() methods (#6007)

This commit is contained in:
Rodry
2021-07-02 19:51:59 +01:00
committed by GitHub
parent fe6cc0c15d
commit fbdad6eac3
3 changed files with 8 additions and 7 deletions

View File

@@ -62,7 +62,7 @@ class InteractionResponses {
* // Reply to the interaction with an embed
* const embed = new MessageEmbed().setDescription('Pong!');
*
* interaction.reply(embed)
* interaction.reply({ embeds: [embed] })
* .then(console.log)
* .catch(console.error);
* @example