diff --git a/src/Discord.Net.Rest/Entities/Users/RestUser.cs b/src/Discord.Net.Rest/Entities/Users/RestUser.cs
index 3f8d565c2..f6a555b6d 100644
--- a/src/Discord.Net.Rest/Entities/Users/RestUser.cs
+++ b/src/Discord.Net.Rest/Entities/Users/RestUser.cs
@@ -70,7 +70,7 @@ namespace Discord.Rest
///
/// The options to be used when sending the request.
///
- /// An awaitable containing a .
+ /// A task that represents the asynchronous get operation. The task result contains a rest DM channel where the user is the recipient.
///
public Task GetOrCreateDMChannelAsync(RequestOptions options = null)
=> UserHelper.CreateDMChannelAsync(this, Discord, options);
@@ -87,7 +87,7 @@ namespace Discord.Rest
/// Gets the Username#Descriminator of the user.
///
///
- /// A string that is the Username#Descriminator of the user.
+ /// A string that resolves to Username#Descriminator of the user.
///
public override string ToString() => $"{Username}#{Discriminator}";
private string DebuggerDisplay => $"{Username}#{Discriminator} ({Id}{(IsBot ? ", Bot" : "")})";