@@ -161,7 +161,7 @@ namespace Discord
/// Adds a reaction to this message.
/// Adds a reaction to this message.
/// </summary>
/// </summary>
/// <example>
/// <example>
/// The following example adds the reaction, <c>💕</c>, to the message.
/// <para> The following example adds the reaction, <c>💕</c>, to the message.</para>
/// <code language="cs">
/// <code language="cs">
/// await msg.AddReactionAsync(new Emoji("\U0001f495"));
/// await msg.AddReactionAsync(new Emoji("\U0001f495"));
/// </code>
/// </code>
@@ -177,7 +177,7 @@ namespace Discord
/// Removes a reaction from message.
/// Removes a reaction from message.
/// </summary>
/// </summary>
/// <example>
/// <example>
/// The following example removes the reaction, <c>💕</c>, added by the message author from the message.
/// <para> The following example removes the reaction, <c>💕</c>, added by the message author from the message.</para>
/// <code language="cs">
/// <code language="cs">
/// await msg.RemoveReactionAsync(new Emoji("\U0001f495"), msg.Author);
/// await msg.RemoveReactionAsync(new Emoji("\U0001f495"), msg.Author);
/// </code>
/// </code>
@@ -194,7 +194,7 @@ namespace Discord
/// Removes a reaction from message.
/// Removes a reaction from message.
/// </summary>
/// </summary>
/// <example>
/// <example>
/// The following example removes the reaction, <c>💕</c>, added by the user with ID 84291986575613952 from the message.
/// <para> The following example removes the reaction, <c>💕</c>, added by the user with ID 84291986575613952 from the message.</para>
/// <code language="cs">
/// <code language="cs">
/// await msg.RemoveReactionAsync(new Emoji("\U0001f495"), 84291986575613952);
/// await msg.RemoveReactionAsync(new Emoji("\U0001f495"), 84291986575613952);
/// </code>
/// </code>
@@ -220,7 +220,7 @@ namespace Discord
/// Gets all users that reacted to a message with a given emote.
/// Gets all users that reacted to a message with a given emote.
/// </summary>
/// </summary>
/// <example>
/// <example>
/// The following example gets the users that have reacted with the emoji <c>💕</c> to the message.
/// <para> The following example gets the users that have reacted with the emoji <c>💕</c> to the message.</para>
/// <code language="cs">
/// <code language="cs">
/// var emoji = new Emoji("\U0001f495");
/// var emoji = new Emoji("\U0001f495");
/// var reactedUsers = await message.GetReactionUsersAsync(emoji, 100).FlattenAsync();
/// var reactedUsers = await message.GetReactionUsersAsync(emoji, 100).FlattenAsync();