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