From be9f67cad43b77f537a316f5410052b5cea1c713 Mon Sep 17 00:00:00 2001 From: Chris Johnston Date: Tue, 3 Mar 2020 23:45:39 -0800 Subject: [PATCH] docs: update xmldoc for AllowedMentions type --- .../Entities/Messages/AllowedMentions.cs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) 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; } }