diff --git a/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs b/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
index f4799f288..4db65bee8 100644
--- a/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
+++ b/src/Discord.Net.Core/Entities/Messages/AllowedMentions.cs
@@ -3,23 +3,24 @@ using System.Collections.Generic;
namespace Discord
{
///
- /// Defines which types of mentions will be parsed from a created message's content.
+ /// Defines which mentions and types of mentions will notify users from the message text.
///
public class AllowedMentions
{
///
- /// Gets or sets the allowed mention types to parse from the message content.
- /// If null, no users will be notified.
+ /// 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.
///
public AllowedMentionTypes? AllowedTypes { get; set; }
///
- /// Gets or sets the list of all role Ids that can be mentioned.
+ /// Gets or sets the list of all role Ids that will be mentioned.
///
public List RoleIds { get; set; }
///
- /// Gets or sets the list of all user Ids that can be mentioned.
+ /// Gets or sets the list of all user Ids that will be mentioned.
///
public List UserIds { get; set; }
}