From 79887885e41b345be70eba8c2e29f57ecf2fd488 Mon Sep 17 00:00:00 2001 From: Sam <30577766+Samasaur1@users.noreply.github.com> Date: Thu, 2 Feb 2023 12:45:48 -0800 Subject: [PATCH] Fix typo in markdown-tool validation error --- Sources/markdown-tool/Commands/FormatCommand.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/markdown-tool/Commands/FormatCommand.swift b/Sources/markdown-tool/Commands/FormatCommand.swift index a998f8b4..2910b47d 100644 --- a/Sources/markdown-tool/Commands/FormatCommand.swift +++ b/Sources/markdown-tool/Commands/FormatCommand.swift @@ -209,7 +209,7 @@ extension MarkdownCommand { } guard let unorderedListMarker = MarkupFormatter.Options.UnorderedListMarker(argument: unorderedListMarker) else { - throw ArgumentParser.ValidationError("The value '\(self.emphasisMarker)' is invalid for '--unordered-list-marker'") + throw ArgumentParser.ValidationError("The value '\(self.unorderedListMarker)' is invalid for '--unordered-list-marker'") } let orderedListNumerals: MarkupFormatter.Options.OrderedListNumerals