Skip to content

Commit 7c96264

Browse files
committed
fix(cli/setup-mode): simplify description for --quiet
1 parent af781c7 commit 7c96264

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

rustup-init.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Options:
4343
-v, --verbose
4444
Set log level to 'DEBUG' if 'RUSTUP_LOG' is unset
4545
-q, --quiet
46-
Disable progress output, limit console logger level to 'WARN' if 'RUSTUP_LOG' is unset
46+
Disable progress output, set log level to 'WARN' if 'RUSTUP_LOG' is unset
4747
-y
4848
Disable confirmation prompt
4949
--default-host <DEFAULT_HOST>

src/cli/setup_mode.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ struct RustupInit {
2929
#[arg(short, long, conflicts_with = "quiet")]
3030
verbose: bool,
3131

32-
/// Disable progress output, limit console logger level to 'WARN' if 'RUSTUP_LOG' is unset
32+
/// Disable progress output, set log level to 'WARN' if 'RUSTUP_LOG' is unset
3333
#[arg(short, long, conflicts_with = "verbose")]
3434
quiet: bool,
3535

tests/suite/cli-ui/rustup-init/rustup-init_help_flag_stdout.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Options:
1212
-v, --verbose
1313
Set log level to 'DEBUG' if 'RUSTUP_LOG' is unset
1414
-q, --quiet
15-
Disable progress output, limit console logger level to 'WARN' if 'RUSTUP_LOG' is unset
15+
Disable progress output, set log level to 'WARN' if 'RUSTUP_LOG' is unset
1616
-y
1717
Disable confirmation prompt
1818
--default-host <DEFAULT_HOST>

tests/suite/cli-ui/rustup-init/rustup-init_sh_help_flag_stdout.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Options:
1212
-v, --verbose
1313
Set log level to 'DEBUG' if 'RUSTUP_LOG' is unset
1414
-q, --quiet
15-
Disable progress output, limit console logger level to 'WARN' if 'RUSTUP_LOG' is unset
15+
Disable progress output, set log level to 'WARN' if 'RUSTUP_LOG' is unset
1616
-y
1717
Disable confirmation prompt
1818
--default-host <DEFAULT_HOST>

0 commit comments

Comments
 (0)