mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-26 00:34:06 +00:00
Fix typo in bootstrap command description
This commit is contained in:
parent
c2ccc855e7
commit
90678ccff5
@ -365,7 +365,7 @@ pub enum Subcommand {
|
||||
#[arg(long)]
|
||||
all: bool,
|
||||
},
|
||||
/// Duild distribution artifacts
|
||||
/// Build distribution artifacts
|
||||
Dist,
|
||||
/// Install distribution artifacts
|
||||
Install,
|
||||
|
@ -36,7 +36,7 @@ complete -c x.py -n "__fish_use_subcommand" -f -a "doc" -d 'Build documentation'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "test" -d 'Build and run some test suites'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "bench" -d 'Build and run some benchmarks'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "clean" -d 'Clean out build directories'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "dist" -d 'Duild distribution artifacts'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "dist" -d 'Build distribution artifacts'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "install" -d 'Install distribution artifacts'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "run" -d 'Run tools contained in this repository'
|
||||
complete -c x.py -n "__fish_use_subcommand" -f -a "setup" -d 'Set up the environment for development'
|
||||
|
@ -63,7 +63,7 @@ Register-ArgumentCompleter -Native -CommandName 'x.py' -ScriptBlock {
|
||||
[CompletionResult]::new('test', 'test', [CompletionResultType]::ParameterValue, 'Build and run some test suites')
|
||||
[CompletionResult]::new('bench', 'bench', [CompletionResultType]::ParameterValue, 'Build and run some benchmarks')
|
||||
[CompletionResult]::new('clean', 'clean', [CompletionResultType]::ParameterValue, 'Clean out build directories')
|
||||
[CompletionResult]::new('dist', 'dist', [CompletionResultType]::ParameterValue, 'Duild distribution artifacts')
|
||||
[CompletionResult]::new('dist', 'dist', [CompletionResultType]::ParameterValue, 'Build distribution artifacts')
|
||||
[CompletionResult]::new('install', 'install', [CompletionResultType]::ParameterValue, 'Install distribution artifacts')
|
||||
[CompletionResult]::new('run', 'run', [CompletionResultType]::ParameterValue, 'Run tools contained in this repository')
|
||||
[CompletionResult]::new('setup', 'setup', [CompletionResultType]::ParameterValue, 'Set up the environment for development')
|
||||
|
Loading…
Reference in New Issue
Block a user