From bff22085ebc9a10851c13f9a6eab0fecb141b260 Mon Sep 17 00:00:00 2001 From: Desmont Date: Tue, 26 Jan 2021 13:20:59 +0100 Subject: [PATCH] Fix spacing around docstrings --- src/Discord.Net.Webhook/DiscordWebhookClient.cs | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/Discord.Net.Webhook/DiscordWebhookClient.cs b/src/Discord.Net.Webhook/DiscordWebhookClient.cs index c34a32db0..f1582c067 100644 --- a/src/Discord.Net.Webhook/DiscordWebhookClient.cs +++ b/src/Discord.Net.Webhook/DiscordWebhookClient.cs @@ -91,7 +91,9 @@ namespace Discord.Webhook string username = null, string avatarUrl = null, RequestOptions options = null, AllowedMentions allowedMentions = null) => WebhookClientHelper.SendMessageAsync(this, text, isTTS, embeds, username, avatarUrl, allowedMentions, options); - /// Modifies a message posted using this webhook. + /// + /// Modifies a message posted using this webhook. + /// /// /// This method can only modify messages that were sent using the same webhook. /// @@ -110,7 +112,9 @@ namespace Discord.Webhook AllowedMentions allowedMentions = null, RequestOptions options = null) => WebhookClientHelper.ModifyMessageAsync(this, messageId, text, embeds, allowedMentions, options); - /// Deletes a message posted using this webhook. + /// + /// Deletes a message posted using this webhook. + /// /// /// This method can only delete messages that were sent using the same webhook. ///