diff --git a/packages/discord.js/src/structures/ChannelSelectMenuInteraction.js b/packages/discord.js/src/structures/ChannelSelectMenuInteraction.js index d36bac8d5..a5e9c99b8 100644 --- a/packages/discord.js/src/structures/ChannelSelectMenuInteraction.js +++ b/packages/discord.js/src/structures/ChannelSelectMenuInteraction.js @@ -20,7 +20,7 @@ class ChannelSelectMenuInteraction extends MessageComponentInteraction { /** * Collection of the selected channels - * @type {Collection} + * @type {Collection} */ this.channels = new Collection(); diff --git a/packages/discord.js/src/util/Channels.js b/packages/discord.js/src/util/Channels.js index a7c6caf8c..8d070bd53 100644 --- a/packages/discord.js/src/util/Channels.js +++ b/packages/discord.js/src/util/Channels.js @@ -20,7 +20,7 @@ const getForumChannel = lazy(() => require('../structures/ForumChannel')); * @param {APIChannel} data The data of the channel to create * @param {Guild} [guild] The guild where this channel belongs * @param {Object} [extras] Extra information to supply for creating this channel - * @returns {Channel} Any kind of channel. + * @returns {BaseChannel} Any kind of channel. * @ignore */ function createChannel(client, data, guild, { allowUnknownGuild } = {}) {