diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionDataOption.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionDataOption.cs
index 999309979..f801ce76c 100644
--- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionDataOption.cs
+++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandInteractionDataOption.cs
@@ -12,12 +12,12 @@ namespace Discord
public interface IApplicationCommandInteractionDataOption
{
///
- /// The name of the parameter.
+ /// Gets the name of the parameter.
///
string Name { get; }
///
- /// The value of the pair.
+ /// Gets the value of the pair.
///
/// This objects type can be any one of the option types in
///
@@ -25,12 +25,12 @@ namespace Discord
object Value { get; }
///
- /// The type of this data's option.
+ /// Gets the type of this data's option.
///
ApplicationCommandOptionType Type { get; }
///
- /// Present if this option is a group or subcommand.
+ /// Gets the nested options of this option.
///
IReadOnlyCollection Options { get; }