File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ pub fn cli() -> Command {
12
12
. arg_quiet ( )
13
13
. arg (
14
14
Arg :: new ( "args" )
15
+ . help ( "Arguments for the binary or example to run" )
15
16
. value_parser ( value_parser ! ( std:: ffi:: OsString ) )
16
17
. num_args ( 0 ..)
17
18
. trailing_var_arg ( true ) ,
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ pub fn cli() -> Command {
12
12
. arg (
13
13
Arg :: new ( "args" )
14
14
. num_args ( 0 ..)
15
- . help ( "Rustc flags" )
15
+ . help ( "Extra rustc flags" )
16
16
. trailing_var_arg ( true ) ,
17
17
)
18
18
. arg_package ( "Package to build" )
Original file line number Diff line number Diff line change @@ -6,7 +6,12 @@ pub fn cli() -> Command {
6
6
subcommand ( "rustdoc" )
7
7
. about ( "Build a package's documentation, using specified custom flags." )
8
8
. arg_quiet ( )
9
- . arg ( Arg :: new ( "args" ) . num_args ( 0 ..) . trailing_var_arg ( true ) )
9
+ . arg (
10
+ Arg :: new ( "args" )
11
+ . help ( "Extra rustdoc flags" )
12
+ . num_args ( 0 ..)
13
+ . trailing_var_arg ( true ) ,
14
+ )
10
15
. arg ( flag (
11
16
"open" ,
12
17
"Opens the docs in a browser after the operation" ,
You can’t perform that action at this time.
0 commit comments