From ba8515a5d3d2c3933ad34a071b934bb2eaf272be Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Tue, 31 Jul 2018 00:04:45 +0100 Subject: [PATCH] Amendments to RestUser --- src/Discord.Net.Rest/Entities/Users/RestUser.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" : "")})";