From 91a888c095a469f9412c2659ac2b8f3c0471b148 Mon Sep 17 00:00:00 2001
From: Still Hsu <341464@gmail.com>
Date: Sun, 7 Oct 2018 15:49:14 +0800
Subject: [PATCH] Fix typos and improve wording
---
src/Discord.Net.Core/Entities/Users/IGuildUser.cs | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/src/Discord.Net.Core/Entities/Users/IGuildUser.cs b/src/Discord.Net.Core/Entities/Users/IGuildUser.cs
index 633056733..5589f7627 100644
--- a/src/Discord.Net.Core/Entities/Users/IGuildUser.cs
+++ b/src/Discord.Net.Core/Entities/Users/IGuildUser.cs
@@ -52,7 +52,7 @@ namespace Discord
///
///
/// A read-only collection of , each representing a snowflake identifier for a role that
- /// this user posesses.
+ /// this user possesses.
///
IReadOnlyCollection RoleIds { get; }
@@ -83,11 +83,10 @@ namespace Discord
///
/// A task that represents the asynchronous modification operation.
///
- ///
Task ModifyAsync(Action func, RequestOptions options = null);
///
- /// Adds the specified to this user in this guild.
+ /// Adds the specified role to this user in the guild.
///
/// The role to be added to the user.
/// The options to be used when sending the request.
@@ -96,7 +95,7 @@ namespace Discord
///
Task AddRoleAsync(IRole role, RequestOptions options = null);
///
- /// Adds the specified to this user in this guild.
+ /// Adds the specified to this user in the guild.
///
/// The roles to be added to the user.
/// The options to be used when sending the request.
@@ -105,7 +104,7 @@ namespace Discord
///
Task AddRolesAsync(IEnumerable roles, RequestOptions options = null);
///
- /// Removes the specified from this user in this guild.
+ /// Removes the specified from this user in the guild.
///
/// The role to be removed from the user.
/// The options to be used when sending the request.
@@ -114,7 +113,7 @@ namespace Discord
///
Task RemoveRoleAsync(IRole role, RequestOptions options = null);
///
- /// Removes the specified from this user in this guild.
+ /// Removes the specified from this user in the guild.
///
/// The roles to be removed from the user.
/// The options to be used when sending the request.