From 35fe57bbfa278720ac55e4455c3adfa4adff294f Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:18:42 -0300 Subject: [PATCH] Update ApplicationCommandType summaries --- .../Entities/Interactions/ApplicationCommandTypes.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs b/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs index 3cfa97a5a..57ba37e18 100644 --- a/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs +++ b/src/Discord.Net.Core/Entities/Interactions/ApplicationCommandTypes.cs @@ -7,22 +7,22 @@ using System.Threading.Tasks; namespace Discord { /// - /// ApplicationCommandType is enum of current valid Application Command Types: Slash, User, Message + /// Represents the types of application commands. /// public enum ApplicationCommandType : byte { /// - /// ApplicationCommandType.Slash is Slash command type + /// A Slash command type /// Slash = 1, /// - /// ApplicationCommandType.User is Context Menu User command type + /// A Context Menu User command type /// User = 2, /// - /// ApplicationCommandType.Message is Context Menu Message command type + /// A Context Menu Message command type /// Message = 3 }