diff --git a/discord.11.3-dev.js b/discord.11.3-dev.js index edb7ec47..618a09f5 100644 --- a/discord.11.3-dev.js +++ b/discord.11.3-dev.js @@ -8913,7 +8913,7 @@ class Guild { /** * Fetch all webhooks for the guild. - * @returns {Collection} + * @returns {Promise>} * @example * // Fetch webhooks * guild.fetchWebhooks() @@ -8926,7 +8926,7 @@ class Guild { /** * Fetch available voice regions. - * @returns {Collection} + * @returns {Promise>} * @example * // Fetch voice regions * guild.fetchVoiceRegions() @@ -9168,7 +9168,7 @@ class Guild { * @example * // Edit the guild AFK channel * guild.setAFKChannel(channel) - * .then(g => console.log(`Updated guild AFK channel to ${g.afkChannel}`)) + * .then(g => console.log(`Updated guild AFK channel to ${g.afkChannel.name}`)) * .catch(console.error); */ setAFKChannel(afkChannel, reason) {