Skip to content

Commit f5a0c63

Browse files
authored
Rollup merge of #111685 - Kobzol:bootstrap-typo, r=clubby789
Fix typo in bootstrap command description Unless `duild` is some clever name for `dist build`, this is probably a typo.
2 parents ee26abd + 90678cc commit f5a0c63

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/bootstrap/flags.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ pub enum Subcommand {
365365
#[arg(long)]
366366
all: bool,
367367
},
368-
/// Duild distribution artifacts
368+
/// Build distribution artifacts
369369
Dist,
370370
/// Install distribution artifacts
371371
Install,

src/etc/completions/x.py.fish

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ complete -c x.py -n "__fish_use_subcommand" -f -a "doc" -d 'Build documentation'
3636
complete -c x.py -n "__fish_use_subcommand" -f -a "test" -d 'Build and run some test suites'
3737
complete -c x.py -n "__fish_use_subcommand" -f -a "bench" -d 'Build and run some benchmarks'
3838
complete -c x.py -n "__fish_use_subcommand" -f -a "clean" -d 'Clean out build directories'
39-
complete -c x.py -n "__fish_use_subcommand" -f -a "dist" -d 'Duild distribution artifacts'
39+
complete -c x.py -n "__fish_use_subcommand" -f -a "dist" -d 'Build distribution artifacts'
4040
complete -c x.py -n "__fish_use_subcommand" -f -a "install" -d 'Install distribution artifacts'
4141
complete -c x.py -n "__fish_use_subcommand" -f -a "run" -d 'Run tools contained in this repository'
4242
complete -c x.py -n "__fish_use_subcommand" -f -a "setup" -d 'Set up the environment for development'

src/etc/completions/x.py.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ Register-ArgumentCompleter -Native -CommandName 'x.py' -ScriptBlock {
6363
[CompletionResult]::new('test', 'test', [CompletionResultType]::ParameterValue, 'Build and run some test suites')
6464
[CompletionResult]::new('bench', 'bench', [CompletionResultType]::ParameterValue, 'Build and run some benchmarks')
6565
[CompletionResult]::new('clean', 'clean', [CompletionResultType]::ParameterValue, 'Clean out build directories')
66-
[CompletionResult]::new('dist', 'dist', [CompletionResultType]::ParameterValue, 'Duild distribution artifacts')
66+
[CompletionResult]::new('dist', 'dist', [CompletionResultType]::ParameterValue, 'Build distribution artifacts')
6767
[CompletionResult]::new('install', 'install', [CompletionResultType]::ParameterValue, 'Install distribution artifacts')
6868
[CompletionResult]::new('run', 'run', [CompletionResultType]::ParameterValue, 'Run tools contained in this repository')
6969
[CompletionResult]::new('setup', 'setup', [CompletionResultType]::ParameterValue, 'Set up the environment for development')

0 commit comments

Comments
 (0)