Browse Source

Update IGuild summaries

pull/1923/head
quin lynch 3 years ago
parent
commit
b44ba498cb
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/Discord.Net.Core/Entities/Guilds/IGuild.cs

+ 3
- 3
src/Discord.Net.Core/Entities/Guilds/IGuild.cs View File

@@ -771,7 +771,7 @@ namespace Discord
/// <returns>A guild user associated with the specified <paramref name="userId" />; <see langword="null" /> if the user is already in the guild.</returns>
Task<IGuildUser> AddGuildUserAsync(ulong userId, string accessToken, Action<AddGuildUserProperties> func = null, RequestOptions options = null);
/// <summary>
/// Disconnects the user from its current voice channel
/// Disconnects the user from its current voice channel.
/// </summary>
/// <param name="user">The user to disconnect.</param>
/// <returns>A task that represents the asynchronous operation for disconnecting a user.</returns>
@@ -990,7 +990,7 @@ namespace Discord
Task<ICustomSticker> CreateStickerAsync(string name, string description, IEnumerable<string> tags, Image image, RequestOptions options = null);

/// <summary>
/// Creates a new sticker in this guild
/// Creates a new sticker in this guild.
/// </summary>
/// <param name="name">The name of the sticker.</param>
/// <param name="description">The description of the sticker.</param>
@@ -1003,7 +1003,7 @@ namespace Discord
Task<ICustomSticker> CreateStickerAsync(string name, string description, IEnumerable<string> tags, string path, RequestOptions options = null);

/// <summary>
/// Creates a new sticker in this guild
/// Creates a new sticker in this guild.
/// </summary>
/// <param name="name">The name of the sticker.</param>
/// <param name="description">The description of the sticker.</param>


Loading…
Cancel
Save