File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -18,15 +18,16 @@ mod verify;
18
18
fn main ( ) {
19
19
let matches = App :: new ( "rustlings" )
20
20
. version ( crate_version ! ( ) )
21
- . author ( "Olivia Hugger" )
22
- . about ( "Test " )
23
- . subcommand ( SubCommand :: with_name ( "verify" ) . alias ( "v" ) )
24
- . subcommand ( SubCommand :: with_name ( "watch" ) . alias ( "w" ) )
21
+ . author ( "Olivia Hugger, Carol Nichols " )
22
+ . about ( "Rustlings is a collection of small exercises to get you used to writing and reading Rust code " )
23
+ . subcommand ( SubCommand :: with_name ( "verify" ) . alias ( "v" ) . about ( "Verifies all exercises according to the recommended order" ) )
24
+ . subcommand ( SubCommand :: with_name ( "watch" ) . alias ( "w" ) . about ( "Reruns `verify` when files were edited" ) )
25
25
. subcommand (
26
26
SubCommand :: with_name ( "run" )
27
27
. alias ( "r" )
28
+ . about ( "Runs/Tests a single exercise" )
28
29
. arg ( Arg :: with_name ( "file" ) . required ( true ) . index ( 1 ) )
29
- . arg ( Arg :: with_name ( "test" ) . short ( "t" ) . long ( "test" ) ) ,
30
+ . arg ( Arg :: with_name ( "test" ) . short ( "t" ) . long ( "test" ) . help ( "Run the file as a test" ) ) ,
30
31
)
31
32
. get_matches ( ) ;
32
33
You can’t perform that action at this time.
0 commit comments