Browse Source

*fix resharper being a d... and moving code to next line*

pull/2469/head
Misha133 2 years ago
parent
commit
683de3bd14
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs

+ 1
- 2
src/Discord.Net.WebSocket/Entities/Guilds/SocketGuild.cs View File

@@ -802,8 +802,7 @@ namespace Discord.WebSocket
/// A task that represents the asynchronous creation operation. The task result contains the newly created
/// category channel.
/// </returns>
public Task<RestCategoryChannel> CreateCategoryChannelAsync(string name,
Action<GuildChannelProperties> func = null, RequestOptions options = null)
public Task<RestCategoryChannel> CreateCategoryChannelAsync(string name, Action<GuildChannelProperties> func = null, RequestOptions options = null)
=> GuildHelper.CreateCategoryChannelAsync(this, Discord, name, options, func);

/// <summary>


Loading…
Cancel
Save