Refer to "guilds" as "servers" in docs and UI elements (#1175)

This commit is contained in:
Oleksii Holub
2023-12-29 00:03:28 +02:00
committed by GitHub
parent e04eb890e6
commit 512f181be2
7 changed files with 32 additions and 32 deletions

View File

@@ -12,10 +12,10 @@ using DiscordChatExporter.Core.Utils.Extensions;
namespace DiscordChatExporter.Cli.Commands;
[Command("channels", Description = "Get the list of channels in a guild.")]
[Command("channels", Description = "Get the list of channels in a server.")]
public class GetChannelsCommand : DiscordCommandBase
{
[CommandOption("guild", 'g', Description = "Guild ID.")]
[CommandOption("guild", 'g', Description = "Server ID.")]
public required Snowflake GuildId { get; init; }
[CommandOption("include-vc", Description = "Include voice channels.")]