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);