diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs
index 3fe53b72c..dd192958d 100644
--- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs
+++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommand.cs
@@ -17,27 +17,27 @@ namespace Discord
ulong ApplicationId { get; }
///
- /// The type of the command
+ /// Gets the type of the command
///
ApplicationCommandType Type { get; }
///
- /// The name of the command.
+ /// Gets the name of the command.
///
string Name { get; }
///
- /// The description of the command.
+ /// Gets the description of the command.
///
string Description { get; }
///
- /// Whether the command is enabled by default when the app is added to a guild.
+ /// Gets whether or not the command is enabled by default when the app is added to a guild.
///
bool IsDefaultPermission { get; }
///
- /// If the option is a subcommand or subcommand group type, this nested options will be the parameters.
+ /// Gets the options for this application command.
///
IReadOnlyCollection Options { get; }