Skip to content

Commit

Permalink
Utilities/iconv: Improve help message
Browse files Browse the repository at this point in the history
  • Loading branch information
ninadsachania authored and nico committed Nov 4, 2024
1 parent c75d03f commit 68a67ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Userland/Utilities/iconv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ ErrorOr<int> serenity_main(Main::Arguments arguments)
args_parser.add_positional_argument(in_path, "Path to input file (reads STDIN if this is omitted)", "FILE", Core::ArgsParser::Required::No);

StringView from = "utf-8"sv;
args_parser.add_option(from, "Source encoding", "from", 'f', "ENCODING");
args_parser.add_option(from, "Source encoding (default utf-8)", "from", 'f', "ENCODING");

StringView to = "utf-8"sv;
args_parser.add_option(to, "Destination encoding", "to", 't', "ENCODING");
args_parser.add_option(to, "Destination encoding (default utf-8)", "to", 't', "ENCODING");

args_parser.parse(arguments);

Expand Down

0 comments on commit 68a67ae

Please sign in to comment.