diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs
index 01b5a8d09..81e12e5de 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketDMChannel.cs
@@ -57,10 +57,10 @@ namespace Discord.WebSocket
///
/// Gets the message associated with the passed .
///
- /// The id of the message you want to retrieve
+ /// The snowflake identifier of the message you want to retrieve.
/// The options to be used when sending the request.
///
- /// An awaitable .
+ /// An awaitable containing an .
///
public async Task GetMessageAsync(ulong id, RequestOptions options = null)
{
@@ -76,7 +76,7 @@ namespace Discord.WebSocket
/// The number of messages you want to get.
/// The options to be used when sending the request.
///
- /// An awaitable .
+ /// An awaitable containing an .
///
public IAsyncEnumerable> GetMessagesAsync(int limit = DiscordConfig.MaxMessagesPerBatch, RequestOptions options = null)
=> SocketChannelHelper.GetMessagesAsync(this, Discord, _messages, null, Direction.Before, limit, CacheMode.AllowDownload, options);
@@ -130,11 +130,11 @@ namespace Discord.WebSocket
//Users
///
- /// Gets a user in this channel from the passed .
+ /// Gets a user in this channel from the provided .
///
- /// The id of the user you want to get.
+ /// The ID of the user.
///
- /// The recipient, or the CurrentUSer otherwise; null
+ /// A object that is a recipient of this channel; otherwise null.
///
public new SocketUser GetUser(ulong id)
{