From 91fd8262fe2df8e18b40a14510c3a24960ca2b2b Mon Sep 17 00:00:00 2001
From: Nora <51166756+AestheticalZ@users.noreply.github.com>
Date: Fri, 21 Apr 2023 23:00:28 +0200
Subject: [PATCH] Update XML documentation for
`IDiscordInteraction.RespondAsync` (#2673)
---
.../Entities/Interactions/IDiscordInteraction.cs | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/src/Discord.Net.Core/Entities/Interactions/IDiscordInteraction.cs b/src/Discord.Net.Core/Entities/Interactions/IDiscordInteraction.cs
index 833eec40..fca9b769 100644
--- a/src/Discord.Net.Core/Entities/Interactions/IDiscordInteraction.cs
+++ b/src/Discord.Net.Core/Entities/Interactions/IDiscordInteraction.cs
@@ -103,8 +103,7 @@ namespace Discord
/// A single embed to send with this response. If this is passed alongside an array of embeds, the single embed will be ignored.
/// The request options for this response.
///
- /// A task that represents an asynchronous send operation for delivering the message. The task result
- /// contains the sent message.
+ /// A task that represents an asynchronous send operation for delivering the message.
///
Task RespondAsync(string text = null, Embed[] embeds = null, bool isTTS = false,
bool ephemeral = false, AllowedMentions allowedMentions = null, MessageComponent components = null, Embed embed = null, RequestOptions options = null);