Skip to content

Commit bf9d101

Browse files
committed
add "input"/"output" to make it more clear what's what
1 parent 4a2f529 commit bf9d101

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools/jsondocck/src/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ pub struct Config {
1111
/// Create a Config from a vector of command-line arguments.
1212
pub fn parse_config(args: Vec<String>) -> Config {
1313
let mut opts = Options::new();
14-
opts.reqopt("", "doc-dir", "Path to the documentation directory.", "PATH")
15-
.reqopt("", "template", "Path to the template file.", "PATH")
14+
opts.reqopt("", "doc-dir", "Path to the documentation output directory.", "PATH")
15+
.reqopt("", "template", "Path to the input template file.", "PATH")
1616
.optflag("h", "help", "Show this message.");
1717

1818
let (argv0, args_) = args.split_first().unwrap();

0 commit comments

Comments
 (0)