diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
index 02037bc3c..61fb7c3b2 100644
--- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
+++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs
@@ -118,6 +118,7 @@ namespace Discord.WebSocket
/// 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.
+ /// An awaitable .
public async Task AddPermissionOverwriteAsync(IUser user, OverwritePermissions perms, RequestOptions options = null)
{
await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, user, perms, options).ConfigureAwait(false);
@@ -130,6 +131,7 @@ namespace Discord.WebSocket
/// 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.
+ /// An awaitable .
public async Task AddPermissionOverwriteAsync(IRole role, OverwritePermissions perms, RequestOptions options = null)
{
await ChannelHelper.AddPermissionOverwriteAsync(this, Discord, role, perms, options).ConfigureAwait(false);