diff --git a/src/Discord.Net.Commands/ModuleBase.cs b/src/Discord.Net.Commands/ModuleBase.cs index 7531fa01e..d4f7099a8 100644 --- a/src/Discord.Net.Commands/ModuleBase.cs +++ b/src/Discord.Net.Commands/ModuleBase.cs @@ -31,7 +31,7 @@ namespace Discord.Commands /// /// Specifies if Discord should read this aloud using text-to-speech. /// An embed to be displayed alongside the . - /// The types of mentions that will be send with this message. + /// The types of mention notifications that will be sent with this message. protected virtual async Task ReplyAsync(string message = null, bool isTTS = false, Embed embed = null, RequestOptions options = null, AllowedMentions allowedMentions = null) { return await Context.Channel.SendMessageAsync(message, isTTS, embed, options, allowedMentions).ConfigureAwait(false); diff --git a/src/Discord.Net.Core/Entities/Channels/IMessageChannel.cs b/src/Discord.Net.Core/Entities/Channels/IMessageChannel.cs index 14facc82e..c1315896b 100644 --- a/src/Discord.Net.Core/Entities/Channels/IMessageChannel.cs +++ b/src/Discord.Net.Core/Entities/Channels/IMessageChannel.cs @@ -23,7 +23,7 @@ namespace Discord /// Determines whether the message should be read aloud by Discord or not. /// The to be sent. /// The options to be used when sending the request. - /// The types of mentions that will be send with this message. + /// The types of mention notifications that will be sent with this message. /// /// A task that represents an asynchronous send operation for delivering the message. The task result /// contains the sent message. diff --git a/src/Discord.Net.Core/Extensions/UserExtensions.cs b/src/Discord.Net.Core/Extensions/UserExtensions.cs index 9f5c520ff..8ec718d0a 100644 --- a/src/Discord.Net.Core/Extensions/UserExtensions.cs +++ b/src/Discord.Net.Core/Extensions/UserExtensions.cs @@ -28,7 +28,7 @@ namespace Discord /// Whether the message should be read aloud by Discord or not. /// The to be sent. /// The options to be used when sending the request. - /// The types of mentions that will be send with this message. + /// The types of mention notifications that will be sent with this message. /// /// A task that represents the asynchronous send operation. The task result contains the sent message. /// diff --git a/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs b/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs index dd5b92467..e9d95344a 100644 --- a/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs +++ b/src/Discord.Net.Rest/Entities/Channels/IRestMessageChannel.cs @@ -19,7 +19,7 @@ namespace Discord.Rest /// The message to be sent. /// Determines whether the message should be read aloud by Discord or not. /// The to be sent. - /// The types of mentions that will be send with this message. + /// The types of mention notifications that will be sent with this message. /// The options to be used when sending the request. /// /// A task that represents an asynchronous send operation for delivering the message. The task result diff --git a/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs index e3781dc3c..b63c0c3d7 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/ISocketMessageChannel.cs @@ -28,7 +28,7 @@ namespace Discord.WebSocket /// The message to be sent. /// Determines whether the message should be read aloud by Discord or not. /// The to be sent. - /// The types of mentions that will be send with this message. + /// The types of mention notifications that will be sent with this message. /// The options to be used when sending the request. /// /// A task that represents an asynchronous send operation for delivering the message. The task result