From 4354c37762663e135e7088d405989542200829dc Mon Sep 17 00:00:00 2001 From: Jiralite <33201955+Jiralite@users.noreply.github.com> Date: Wed, 13 Oct 2021 11:18:00 +0100 Subject: [PATCH] docs(Message): Specify `Snowflake` in return type of `awaitReactions()` (#6822) --- src/structures/Message.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/Message.js b/src/structures/Message.js index aa51659a4ee1..144ac9ef211d 100644 --- a/src/structures/Message.js +++ b/src/structures/Message.js @@ -468,7 +468,7 @@ class Message extends Base { * Similar to createReactionCollector but in promise form. * Resolves with a collection of reactions that pass the specified filter. * @param {AwaitReactionsOptions} [options={}] Optional options to pass to the internal collector - * @returns {Promise>} + * @returns {Promise>} * @example * // Create a reaction collector * const filter = (reaction, user) => reaction.emoji.name === '👌' && user.id === 'someId'