Skip to content

Commit

Permalink
driver: fix help string for --help
Browse files Browse the repository at this point in the history
  • Loading branch information
widlarizer committed Sep 26, 2024
1 parent a9870d2 commit 3c692ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kernel/driver.cc
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,8 @@ int main(int argc, char **argv)
("f,frontend", "use <frontend> for the input files on the command line",
cxxopts::value<std::string>(), "<frontend>")
("H", "print the command list")
("h,help", "print the help message for <command>",
cxxopts::value<std::string>(), "<command>")
("h,help", "print this help message. If given, print help for <command>.",
cxxopts::value<std::string>(), "[<command>]")
("s,scriptfile", "execute the commands in <scriptfile>",
cxxopts::value<std::string>(), "<scriptfile>")
("c,tcl-scriptfile", "execute the commands in the TCL <tcl_scriptfile> (see 'help tcl' for details)",
Expand Down

0 comments on commit 3c692ef

Please sign in to comment.