We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a11ff75 commit 4594896Copy full SHA for 4594896
packages/discord.js/src/managers/ApplicationEmojiManager.js
@@ -65,12 +65,12 @@ class ApplicationEmojiManager extends CachedManager {
65
* @returns {Promise<ApplicationEmoji|Collection<Snowflake, ApplicationEmoji>>}
66
* @example
67
* // Fetch all emojis from the application
68
- * message.application.emojis.fetch()
+ * application.emojis.fetch()
69
* .then(emojis => console.log(`There are ${emojis.size} emojis.`))
70
* .catch(console.error);
71
72
* // Fetch a single emoji
73
- * message.application.emojis.fetch('222078108977594368')
+ * application.emojis.fetch('222078108977594368')
74
* .then(emoji => console.log(`The emoji name is: ${emoji.name}`))
75
76
*/
0 commit comments