We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 436c084 + b3665c2 commit b5fd170Copy full SHA for b5fd170
src/cmd/test.rs
@@ -7,7 +7,10 @@ use mdbook::MDBook;
7
pub fn make_subcommand<'a, 'b>() -> App<'a, 'b> {
8
SubCommand::with_name("test")
9
.about("Test that code samples compile")
10
- .arg_from_usage("-L, --library-path [DIR]... 'directory to add to crate search path'")
+ .arg_from_usage("-L, --library-path [DIR]... 'directories to add to crate search path'")
11
+ .arg_from_usage(
12
+ "[dir] 'A directory for your book{n}(Defaults to Current Directory when omitted)'",
13
+ )
14
}
15
16
// test command implementation
0 commit comments