Skip to content

Commit

Permalink
Merge pull request #7 from stefanheule/master
Browse files Browse the repository at this point in the history
Improve command line help to use a more common file extension.
  • Loading branch information
eschkufz committed Nov 9, 2014
2 parents 3e30c58 + 8c6c3f5 commit ff85128
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/command_line/command_line_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,11 @@ class CommandLineConfig {
auto& debug = FlagArg::create("debug_args")
.description("Print program arguments and quit");
auto& read_config = ValueArg<std::string>::create("config")
.usage("<path/to/file.dat>")
.usage("<path/to/file.conf>")
.default_val("")
.description("Read program args from a configuration file");
auto& write_config = ValueArg<std::string>::create("example_config")
.usage("<path/to/file.dat>")
.usage("<path/to/file.conf>")
.default_val("")
.description("Print an example configuration file");

Expand Down

0 comments on commit ff85128

Please sign in to comment.