From 15b605f5a7bf98fab3253053a544ac3ceb7d8e8e Mon Sep 17 00:00:00 2001 From: Tyrrrz Date: Fri, 16 Apr 2021 23:29:19 +0300 Subject: [PATCH] Fix typo --- DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs | 2 +- DiscordChatExporter.Gui/Views/Dialogs/ExportSetupView.xaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs index 25356cb4..6cc6c4c5 100644 --- a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs +++ b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs @@ -32,7 +32,7 @@ namespace DiscordChatExporter.Cli.Commands.Base [CommandOption("before", Description = "Only include messages sent before this date or message ID.")] public Snowflake? Before { get; init; } - [CommandOption("partition", 'p', Description = "Split output into partitions, each limited to this number of message (e.g. 100) or file size (e.g. 10mb).")] + [CommandOption("partition", 'p', Description = "Split output into partitions, each limited to this number of messages (e.g. 100) or file size (e.g. 10mb).")] public PartitionLimit PartitionLimit { get; init; } = NullPartitionLimit.Instance; [CommandOption("parallel", Description = "Limits how many channels can be exported in parallel.")] diff --git a/DiscordChatExporter.Gui/Views/Dialogs/ExportSetupView.xaml b/DiscordChatExporter.Gui/Views/Dialogs/ExportSetupView.xaml index 4831bdad..2bc0b3c9 100644 --- a/DiscordChatExporter.Gui/Views/Dialogs/ExportSetupView.xaml +++ b/DiscordChatExporter.Gui/Views/Dialogs/ExportSetupView.xaml @@ -131,7 +131,7 @@ materialDesign:HintAssist.Hint="Partition limit" materialDesign:HintAssist.IsFloating="True" Text="{Binding PartitionLimitValue}" - ToolTip="Split output into partitions, each limited to this number of message (e.g. 100) or file size (e.g. 10mb)" /> + ToolTip="Split output into partitions, each limited to this number of messages (e.g. 100) or file size (e.g. 10mb)" />