From 3018f8ef427929498be7d852b074b177e21aaff3 Mon Sep 17 00:00:00 2001 From: Casino Boyale Date: Sat, 7 Jul 2018 15:43:54 +0100 Subject: [PATCH] Corrections to SocketGuildChannel --- .../Entities/Channels/SocketGuildChannel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs index 6a8372404..19b5c297a 100644 --- a/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs +++ b/src/Discord.Net.WebSocket/Entities/Channels/SocketGuildChannel.cs @@ -189,7 +189,7 @@ namespace Discord.WebSocket /// /// The options to be used when sending the request. /// - /// An awaitable . + /// An awaitable containing a . /// public async Task> GetInvitesAsync(RequestOptions options = null) => await ChannelHelper.GetInvitesAsync(this, Discord, options).ConfigureAwait(false); @@ -202,7 +202,7 @@ namespace Discord.WebSocket /// Whether to try reuse a similar invite or not. /// The options to be used when sending the request. /// - /// An awaitable . + /// An awaitable containing a . /// public async Task CreateInviteAsync(int? maxAge = 86400, int? maxUses = null, bool isTemporary = false, bool isUnique = false, RequestOptions options = null) => await ChannelHelper.CreateInviteAsync(this, Discord, maxAge, maxUses, isTemporary, isUnique, options).ConfigureAwait(false);