From e8edd2a45087b53e301d3e702693cb64c674cf76 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Thu, 7 Oct 2021 01:13:08 -0300 Subject: [PATCH] Fix summary in IApplicationCommandOptionChoice --- .../Entities/Interactions/IApplicationCommandOptionChoice.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOptionChoice.cs b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOptionChoice.cs index 1f0540656..24fae04c2 100644 --- a/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOptionChoice.cs +++ b/src/Discord.Net.Core/Entities/Interactions/IApplicationCommandOptionChoice.cs @@ -12,12 +12,12 @@ namespace Discord public interface IApplicationCommandOptionChoice { /// - /// 1-100 character choice name. + /// Gets the name of this choice. /// string Name { get; } /// - /// value of the choice. + /// Gets the value of the choice. /// object Value { get; }