From 259d476209e2d1f5f1116d47dfb2b11ca3d1b64c Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Thu, 23 May 2019 08:56:06 +0100 Subject: [PATCH] Fixed the docs strings --- src/Discord.Net.Core/Entities/Messages/IUserMessage.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Messages/IUserMessage.cs b/src/Discord.Net.Core/Entities/Messages/IUserMessage.cs index 571f82749..76652618e 100644 --- a/src/Discord.Net.Core/Entities/Messages/IUserMessage.cs +++ b/src/Discord.Net.Core/Entities/Messages/IUserMessage.cs @@ -87,13 +87,13 @@ namespace Discord /// Removes a reaction from message. /// /// - /// The following example removes the reaction, 💕, added by the message author from the message. + /// The following example removes the reaction, 💕, added by the user with ID 84291986575613952 from the message. /// /// await msg.RemoveReactionAsync(new Emoji("\U0001f495"), 84291986575613952); /// /// /// The emoji used to react to this message. - /// The id of the user that added the emoji. + /// The ID of the user that added the emoji. /// The options to be used when sending the request. /// /// A task that represents the asynchronous operation for removing a reaction to this message.