From 8e8d9b490a71de6cabe6f16375d7549a7c5c3737 Mon Sep 17 00:00:00 2001 From: anandre <38661761+anandre@users.noreply.github.com> Date: Sun, 28 Mar 2021 22:48:58 -0500 Subject: [PATCH] docs(ReactionUserManager): fetch description (#5382) The description currently says that fetching returns all users on the reaction. This is incorrect, as there is an API limit of 100 users per fetch. This PR changes the description to better match the actual behavior. --- src/managers/ReactionUserManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/managers/ReactionUserManager.js b/src/managers/ReactionUserManager.js index f98a2361a..1d93e42e0 100644 --- a/src/managers/ReactionUserManager.js +++ b/src/managers/ReactionUserManager.js @@ -25,7 +25,7 @@ class ReactionUserManager extends BaseManager { */ /** - * Fetches all the users that gave this reaction. Resolves with a collection of users, mapped by their IDs. + * Fetches the users that gave this reaction. Resolves with a collection of users, mapped by their IDs. * @param {Object} [options] Options for fetching the users * @param {number} [options.limit=100] The maximum amount of users to fetch, defaults to 100 * @param {Snowflake} [options.before] Limit fetching users to those with an id lower than the supplied id