From 57e2dc9313182a67660c5a1e60540228dde3e85e Mon Sep 17 00:00:00 2001 From: Tyrrrz <1935960+Tyrrrz@users.noreply.github.com> Date: Tue, 13 Dec 2022 03:15:24 +0200 Subject: [PATCH] Correct a comment --- DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs index 73901699..01319c4c 100644 --- a/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs +++ b/DiscordChatExporter.Cli/Commands/Base/ExportCommandBase.cs @@ -31,7 +31,7 @@ public abstract class ExportCommandBase : TokenCommandBase public string OutputPath { get => _outputPath; - // Handle ~/ in paths on *nix systems + // Handle ~/ in paths on Unix systems // https://github.com/Tyrrrz/DiscordChatExporter/pull/903 init => _outputPath = Path.GetFullPath(value); }