From 2e9e7bf6d930ac299f1fd544f69af8532fd4f0ad Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:15:37 -0300 Subject: [PATCH] Update IApplicationCommandInteractionDataOption summaries --- .../IApplicationCommandInteractionDataOption.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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; }