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.
///