diff --git a/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs b/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
index 2924f4dcd..cb18cae90 100644
--- a/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
+++ b/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
@@ -3,24 +3,31 @@ using System.Collections.Generic;
namespace Discord
{
///
- /// Defines which mentions and types of mentions that will notify users from the message text.
+ /// Defines which mentions and types of mentions that will notify users from the message content.
///
public class AllowedMentions
{
///
- /// Gets or sets the type of mentions that will notify users.
- /// If null, only the role and user Ids specified in
- /// and respectively will be notified.
+ /// Gets or sets the type of mentions that will be parsed from the message content.
+ /// The flag is mutually exclusive with the
+ /// property, and the flag is mutually exclusive with the
+ /// property.
///
public AllowedMentionTypes? AllowedTypes { get; set; }
///
/// Gets or sets the list of all role Ids that will be mentioned.
+ /// This property is mutually exclusive with the
+ /// flag of the property. If the flag is set, the value of this property
+ /// must be null or empty.
///
public List RoleIds { get; set; }
///
/// Gets or sets the list of all user Ids that will be mentioned.
+ /// This property is mutually exclusive with the
+ /// flag of the property. If the flag is set, the value of this property
+ /// must be null or empty.
///
public List UserIds { get; set; }
}