diff --git a/src/structures/MessageMentions.js b/src/structures/MessageMentions.js
index 7ba33820e..8c80906e8 100644
--- a/src/structures/MessageMentions.js
+++ b/src/structures/MessageMentions.js
@@ -15,6 +15,7 @@ class MessageMentions {
if (users instanceof Collection) {
/**
* Any users that were mentioned
+ * Order as received from the API, not as they appear in the message content
* @type {Collection}
*/
this.users = new Collection(users);
@@ -37,6 +38,7 @@ class MessageMentions {
if (roles instanceof Collection) {
/**
* Any roles that were mentioned
+ * Order as received from the API, not as they appear in the message content
* @type {Collection}
*/
this.roles = new Collection(roles);
@@ -89,6 +91,7 @@ class MessageMentions {
/**
* Any members that were mentioned (only in {@link TextChannel}s)
+ * Order as received from the API, not as they appear in the message content
* @type {?Collection}
* @readonly
*/
@@ -105,6 +108,7 @@ class MessageMentions {
/**
* Any channels that were mentioned
+ * Order as they appear first in the message content
* @type {Collection}
* @readonly
*/