Browse Source

Fix spacing around docstrings

pull/1753/head
Desmont 4 years ago
parent
commit
bff22085eb
1 changed files with 6 additions and 2 deletions
  1. +6
    -2
      src/Discord.Net.Webhook/DiscordWebhookClient.cs

+ 6
- 2
src/Discord.Net.Webhook/DiscordWebhookClient.cs View File

@@ -91,7 +91,9 @@ namespace Discord.Webhook
string username = null, string avatarUrl = null, RequestOptions options = null, AllowedMentions allowedMentions = null) string username = null, string avatarUrl = null, RequestOptions options = null, AllowedMentions allowedMentions = null)
=> WebhookClientHelper.SendMessageAsync(this, text, isTTS, embeds, username, avatarUrl, allowedMentions, options); => WebhookClientHelper.SendMessageAsync(this, text, isTTS, embeds, username, avatarUrl, allowedMentions, options);


/// <summary> Modifies a message posted using this webhook. </summary>
/// <summary>
/// Modifies a message posted using this webhook.
/// </summary>
/// <remarks> /// <remarks>
/// This method can only modify messages that were sent using the same webhook. /// This method can only modify messages that were sent using the same webhook.
/// </remarks> /// </remarks>
@@ -110,7 +112,9 @@ namespace Discord.Webhook
AllowedMentions allowedMentions = null, RequestOptions options = null) AllowedMentions allowedMentions = null, RequestOptions options = null)
=> WebhookClientHelper.ModifyMessageAsync(this, messageId, text, embeds, allowedMentions, options); => WebhookClientHelper.ModifyMessageAsync(this, messageId, text, embeds, allowedMentions, options);


/// <summary> Deletes a message posted using this webhook. </summary>
/// <summary>
/// Deletes a message posted using this webhook.
/// </summary>
/// <remarks> /// <remarks>
/// This method can only delete messages that were sent using the same webhook. /// This method can only delete messages that were sent using the same webhook.
/// </remarks> /// </remarks>


Loading…
Cancel
Save