From 0fd59f8840f596755a142725a72a6aa1530cfc7d Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Wed, 1 Aug 2018 13:32:42 +0100 Subject: [PATCH] Amendments --- src/Discord.Net.Rest/Entities/Channels/RestDMChannel.cs | 4 +++- src/Discord.Net.Rest/Entities/Invites/RestInvite.cs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Rest/Entities/Channels/RestDMChannel.cs b/src/Discord.Net.Rest/Entities/Channels/RestDMChannel.cs index 151c5a1a2..bee096273 100644 --- a/src/Discord.Net.Rest/Entities/Channels/RestDMChannel.cs +++ b/src/Discord.Net.Rest/Entities/Channels/RestDMChannel.cs @@ -145,7 +145,9 @@ namespace Discord.Rest /// /// Gets a string that represents the Username#Discriminator of the recipient. /// - /// + /// + /// A string that resolves to the Recipient of this channel. + /// public override string ToString() => $"@{Recipient}"; private string DebuggerDisplay => $"@{Recipient} ({Id}, DM)"; diff --git a/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs b/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs index 3800fc388..153eb6c41 100644 --- a/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs +++ b/src/Discord.Net.Rest/Entities/Invites/RestInvite.cs @@ -66,7 +66,7 @@ namespace Discord.Rest /// Gets the URL of the invite. /// /// - /// A string that is the URL of the invite. + /// A string that resolves to the Url of the invite. /// public override string ToString() => Url; private string DebuggerDisplay => $"{Url} ({GuildName} / {ChannelName})";