From 6302afb84bb05907d12790280c6074ff850497a3 Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Sun, 19 Jan 2020 13:06:21 +0100 Subject: [PATCH] docs(MessageMentions): channels are actually in order (#3705) * docs(MessageMentions): channels are actually in order * docs(MessageMentions): readd info about order for channels * docs(MessageMentions): reword info to account for rtl locales --- src/structures/MessageMentions.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/structures/MessageMentions.js b/src/structures/MessageMentions.js index 81bd791c3..ab2d5c81b 100644 --- a/src/structures/MessageMentions.js +++ b/src/structures/MessageMentions.js @@ -42,7 +42,7 @@ class MessageMentions { if (users instanceof Collection) { /** * Any users that were mentioned - * Order as received from the API, not left to right by occurence in the message content + * Order as received from the API, not as they appear in the message content * @type {Collection} */ this.users = new Collection(users); @@ -64,7 +64,7 @@ class MessageMentions { if (roles instanceof Collection) { /** * Any roles that were mentioned - * Order as received from the API, not left to right by occurence in the message content + * Order as received from the API, not as they appear in the message content * @type {Collection} */ this.roles = new Collection(roles); @@ -106,7 +106,7 @@ class MessageMentions { if (crosspostedChannels instanceof Collection) { /** * A collection of crossposted channels - * Order as received from the API, not left to right by occurence in the message content + * Order as received from the API, not as they appear in the message content * @type {Collection} */ this.crosspostedChannels = new Collection(crosspostedChannels); @@ -130,7 +130,7 @@ class MessageMentions { /** * Any members that were mentioned (only in {@link TextChannel}s) - * Order as received from the API, not left to right by occurence in the message content + * Order as received from the API, not as they appear in the message content * @type {?Collection} * @readonly */ @@ -147,7 +147,7 @@ class MessageMentions { /** * Any channels that were mentioned - * Order as received from the API, not left to right by occurence in the message content + * Order as they appear first in the message content * @type {Collection} * @readonly */