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
}