We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a2f529 commit bf9d101Copy full SHA for bf9d101
src/tools/jsondocck/src/config.rs
@@ -11,8 +11,8 @@ pub struct Config {
11
/// Create a Config from a vector of command-line arguments.
12
pub fn parse_config(args: Vec<String>) -> Config {
13
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")
+ opts.reqopt("", "doc-dir", "Path to the documentation output directory.", "PATH")
+ .reqopt("", "template", "Path to the input template file.", "PATH")
16
.optflag("h", "help", "Show this message.");
17
18
let (argv0, args_) = args.split_first().unwrap();
0 commit comments