diff --git a/src/structures/ReactionCollector.js b/src/structures/ReactionCollector.js index a86b4a0c8..e0fa316fc 100644 --- a/src/structures/ReactionCollector.js +++ b/src/structures/ReactionCollector.js @@ -103,7 +103,7 @@ class ReactionCollector extends Collector { */ dispose(reaction, user) { /** - * Emitted whenever a reaction is disposed of and the `dispose` option is set to true. + * Emitted when the reaction had all the users removed and the `dispose` option is set to true. * @event ReactionCollector#dispose * @param {MessageReaction} reaction The reaction that was disposed of * @param {User} user The user that removed the reaction @@ -111,9 +111,7 @@ class ReactionCollector extends Collector { if (reaction.message.id !== this.message.id) return null; /** - * Emitted whenever a reaction is removed from a message and the `dispose` option is set to true. - * Will emit on all reaction removals, as opposed to {@link Collector#dispose} which will only - * be emitted when the entire reaction is removed. + * Emitted when the reaction had one user removed and the `dispose` option is set to true. * @event ReactionCollector#remove * @param {MessageReaction} reaction The reaction that was removed * @param {User} user The user that removed the reaction