diff --git a/src/structures/GuildEmoji.js b/src/structures/GuildEmoji.js index fabc9c60a830..00dd215b30ce 100644 --- a/src/structures/GuildEmoji.js +++ b/src/structures/GuildEmoji.js @@ -152,7 +152,7 @@ class GuildEmoji extends BaseGuildEmoji { /** * Whether this emoji is the same as another one. * @param {GuildEmoji|APIEmoji} other The emoji to compare it to - * @returns {boolean} Whether the emoji is equal to the given emoji or not + * @returns {boolean} */ equals(other) { if (other instanceof GuildEmoji) { diff --git a/src/structures/Sticker.js b/src/structures/Sticker.js index f72c7fc83627..621fc61b4de3 100644 --- a/src/structures/Sticker.js +++ b/src/structures/Sticker.js @@ -204,7 +204,7 @@ class Sticker extends Base { /** * Whether this sticker is the same as another one. * @param {Sticker|APISticker} other The sticker to compare it to - * @returns {boolean} Whether the sticker is equal to the given sticker or not + * @returns {boolean} */ equals(other) { if (other instanceof Sticker) { diff --git a/src/structures/TextChannel.js b/src/structures/TextChannel.js index 63ad79657098..510f9c76f61e 100644 --- a/src/structures/TextChannel.js +++ b/src/structures/TextChannel.js @@ -162,7 +162,7 @@ class TextChannel extends GuildChannel { * Creates a webhook for the channel. * @param {string} name The name of the webhook * @param {ChannelWebhookCreateOptions} [options] Options for creating the webhook - * @returns {Promise} webhook The created webhook + * @returns {Promise} Returns the created Webhook * @example * // Create a webhook for the current channel * channel.createWebhook('Snek', { diff --git a/src/structures/interfaces/TextBasedChannel.js b/src/structures/interfaces/TextBasedChannel.js index 550240088395..45690f8c53bd 100644 --- a/src/structures/interfaces/TextBasedChannel.js +++ b/src/structures/interfaces/TextBasedChannel.js @@ -284,7 +284,7 @@ class TextBasedChannel { * @param {Collection|MessageResolvable[]|number} messages * Messages or number of messages to delete * @param {boolean} [filterOld=false] Filter messages to remove those which are older than two weeks automatically - * @returns {Promise>} Deleted messages + * @returns {Promise>} Returns the deleted messages * @example * // Bulk delete messages * channel.bulkDelete(5)