Skip to content

Commit ff85128

Browse files
committed
Merge pull request #7 from stefanheule/master
Improve command line help to use a more common file extension.
2 parents 3e30c58 + 8c6c3f5 commit ff85128

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/command_line/command_line_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ class CommandLineConfig {
4040
auto& debug = FlagArg::create("debug_args")
4141
.description("Print program arguments and quit");
4242
auto& read_config = ValueArg<std::string>::create("config")
43-
.usage("<path/to/file.dat>")
43+
.usage("<path/to/file.conf>")
4444
.default_val("")
4545
.description("Read program args from a configuration file");
4646
auto& write_config = ValueArg<std::string>::create("example_config")
47-
.usage("<path/to/file.dat>")
47+
.usage("<path/to/file.conf>")
4848
.default_val("")
4949
.description("Print an example configuration file");
5050

0 commit comments

Comments
 (0)