diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
index e48c6dd5f..79d95fd82 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
@@ -79,13 +79,11 @@ namespace Discord.WebSocket
=> ChannelHelper.DeleteAsync(this, Discord, options);
///
- /// Gets the overwrite permissions of the specified
+ /// Gets the overwrite permissions of the specified .
///
- ///
- /// The user that you want to get the overwrite permissions for
- ///
+ /// The user that you want to get the overwrite permissions for.
///
- /// Null if the user has no overwrite permissions otherwise the overwrite permissions for the user
+ /// The overwrite permissions for the requested user; otherwise null.
///
public OverwritePermissions? GetPermissionOverwrite(IUser user)
{
@@ -98,13 +96,11 @@ namespace Discord.WebSocket
}
///
- /// Gets the overwrite permissions of the specified
+ /// Gets the overwrite permissions of the specified .
///
- ///
- /// The role that you want to get the overwrite permissions for
- ///
+ /// The role that you want to get the overwrite permissions for.
///
- /// Null if the role has no overwrite permissions otherwise the overwrite permissions for the role
+ /// The overwrite permissions for the requested role; otherwise null.
///
public OverwritePermissions? GetPermissionOverwrite(IRole role)
{
@@ -117,17 +113,11 @@ namespace Discord.WebSocket
}
///
- /// Adds an overwrite permission for the specified
+ /// Adds an overwrite permission for the specified .
///
- ///
- /// The user you want the overwrite permission to apply to
- ///
- ///
- /// The overwrite permission you want to add
- ///
- ///
- /// The options to be used when sending the request
- ///
+ /// The user you want the overwrite permission to apply to.
+ /// The overwrite permission you want to add.
+ /// The options to be used when sending the request.
public async Task AddPermissionOverwriteAsync(IUser user, OverwritePermissions perms, RequestOptions options = null)
{
await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, user, perms, options).ConfigureAwait(false);
@@ -135,17 +125,11 @@ namespace Discord.WebSocket
}
///
- /// Adds an overwrite permission for the specified
+ /// Adds an overwrite permission for the specified .
///
- ///
- /// The role you want the overwrite permission to apply to
- ///
- ///
- /// The overwrite permission you want to add
- ///
- ///
- /// The options to be used when sending the request
- ///
+ /// The role you want the overwrite permission to apply to.
+ /// The overwrite permission you want to add.
+ /// The options to be used when sending the request.
public async Task AddPermissionOverwriteAsync(IRole role, OverwritePermissions perms, RequestOptions options = null)
{
await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, role, perms, options).ConfigureAwait(false);