From c9bce07c017d3a861bccc23235de7e55d1a61656 Mon Sep 17 00:00:00 2001 From: quin lynch Date: Sun, 19 Dec 2021 02:23:45 -0400 Subject: [PATCH] Add missing periods --- .../Interactions/RestInteractionContext.cs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/Discord.Net.Rest/Interactions/RestInteractionContext.cs b/src/Discord.Net.Rest/Interactions/RestInteractionContext.cs index a502ed8f4..196c6133b 100644 --- a/src/Discord.Net.Rest/Interactions/RestInteractionContext.cs +++ b/src/Discord.Net.Rest/Interactions/RestInteractionContext.cs @@ -89,22 +89,22 @@ namespace Discord.Rest } /// - /// Represents a Rest based context of an + /// Represents a Rest based context of an . /// public class RestInteractionContext : RestInteractionContext { /// - /// Initializes a new + /// Initializes a new . /// - /// The underlying client - /// The underlying interaction + /// The underlying client. + /// The underlying interaction. public RestInteractionContext(DiscordRestClient client, RestInteraction interaction) : base(client, interaction) { } /// - /// Initializes a new + /// Initializes a new . /// - /// The underlying client - /// The underlying interaction + /// The underlying client. + /// The underlying interaction. /// The callback for outgoing json. public RestInteractionContext(DiscordRestClient client, RestInteraction interaction, Func interactionResponseCallback) : base(client, interaction, interactionResponseCallback) { }