From aa902093c47b6351c12e8b631caec1cf7be65683 Mon Sep 17 00:00:00 2001 From: Quin Lynch <49576606+quinchs@users.noreply.github.com> Date: Sat, 12 Feb 2022 06:47:05 -0400 Subject: [PATCH] Update src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketApplicationCommand.cs Co-authored-by: Jared L <48422312+lhjt@users.noreply.github.com> --- .../Interaction/SocketBaseCommand/SocketApplicationCommand.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketApplicationCommand.cs b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketApplicationCommand.cs index a28c1e858..b0d0bf1cc 100644 --- a/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketApplicationCommand.cs +++ b/src/Discord.Net.WebSocket/Entities/Interaction/SocketBaseCommand/SocketApplicationCommand.cs @@ -49,7 +49,7 @@ namespace Discord.WebSocket => SnowflakeUtils.FromSnowflake(Id); /// - /// Gets the guild this command resides in, if this command is a global command then it will return + /// Gets the guild this command resides in; if this command is a global command then it will return /// public SocketGuild Guild => GuildId.HasValue ? Discord.GetGuild(GuildId.Value) : null;