From c2a37e693c06ace52f45ed6ba27c41172f93da9c Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Thu, 10 Jul 2025 16:16:52 -0600 Subject: [PATCH] Utilites: Remove extra dashes from raw strings argument to js --- Utilities/js.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/js.cpp b/Utilities/js.cpp index b6f3c82b2e4..1d32250ccdb 100644 --- a/Utilities/js.cpp +++ b/Utilities/js.cpp @@ -822,7 +822,7 @@ ErrorOr ladybird_main(Main::Arguments arguments) args_parser.add_option(s_strip_ansi, "Disable ANSI colors", "disable-ansi-colors", 'i'); args_parser.add_option(s_disable_source_location_hints, "Disable source location hints", "disable-source-location-hints", 'h'); args_parser.add_option(gc_on_every_allocation, "GC on every allocation", "gc-on-every-allocation", 'g'); - args_parser.add_option(s_raw_strings, "Display strings without quotes or escape sequences", "--raw-strings", 'r'); + args_parser.add_option(s_raw_strings, "Display strings without quotes or escape sequences", "raw-strings", 'r'); args_parser.add_option(disable_syntax_highlight, "Disable live syntax highlighting", "no-syntax-highlight", 's'); args_parser.add_option(disable_debug_printing, "Disable debug output", "disable-debug-output", {}); args_parser.add_option(evaluate_script, "Evaluate argument as a script", "evaluate", 'c', "script");