diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs index 4d84dce25..097e13318 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs @@ -88,11 +88,11 @@ namespace Discord.WebSocket => SocketChannelHelper.GetMessagesAsync(this, Discord, _messages, null, Direction.Before, limit, CacheMode.AllowDownload, options); /// - /// Gets the last N messages from this channel based on the passed id and the direction to get the messages. + /// Gets a collection of messages in this channel. /// - /// The id of the starting message. - /// The direction that you want the messages to be retrieved from. - /// The number of messages you want to retrieve. + /// The ID of the starting message to get the messages from. + /// The direction of the messages to be gotten from. + /// The numbers of message to be gotten from. /// The options to be used when sending the request. /// /// Paged collection of messages. Flattening the paginated response into a collection of messages with @@ -102,11 +102,11 @@ namespace Discord.WebSocket => SocketChannelHelper.GetMessagesAsync(this, Discord, _messages, fromMessageId, dir, limit, CacheMode.AllowDownload, options); /// - /// Gets the last N messages from this channel based on the passed message and the direction to get the messages. + /// Gets a collection of messages in this channel. /// - /// The message you want to start from. - /// The direction that you want the messages to be retrieved from. - /// The number of messages you want to retrieve. + /// The starting message to get the messages from. + /// The direction of the messages to be gotten from. + /// The numbers of message to be gotten from. /// The options to be used when sending the request. /// /// Paged collection of messages. Flattening the paginated response into a collection of messages with