File tree Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Expand file tree Collapse file tree 1 file changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -360,15 +360,13 @@ enum Xtasks {
360
360
Check {
361
361
#[ clap(
362
362
long,
363
- short,
364
363
default_value = "false" ,
365
364
help = "Run in the expected format for rust-analyzer's override check command"
366
365
) ]
367
366
ide_mode : bool ,
368
367
369
368
#[ clap(
370
369
long,
371
- short,
372
370
default_value = "all" ,
373
371
value_parser=clap:: value_parser!( CheckKind ) ,
374
372
value_name=CheckKind :: to_placeholder( ) ,
@@ -380,21 +378,21 @@ enum Xtasks {
380
378
Docs {
381
379
/// Open in browser
382
380
/// This will open the generated docs in the default browser
383
- #[ clap( long, short ) ]
381
+ #[ clap( long) ]
384
382
open : bool ,
385
383
386
384
/// Skip building rust docs
387
- #[ clap( long, short ) ]
385
+ #[ clap( long) ]
388
386
no_rust_docs : bool ,
389
387
} ,
390
388
/// Build the main workspace, and then run all tests
391
389
Test {
392
390
/// Run tests containing the given name only
393
- #[ clap( long, short ) ]
391
+ #[ clap( long) ]
394
392
name : Option < String > ,
395
393
396
394
/// Run tests in the given package only
397
- #[ clap( long, short ) ]
395
+ #[ clap( long) ]
398
396
package : Option < String > ,
399
397
400
398
/// Run tests without coverage
You can’t perform that action at this time.
0 commit comments