Skip to content

Commit 6022bbb

Browse files
committed
Auto merge of #6555 - Phlosioneer:patch-1, r=dwijnand
Fix incorrect help message The `cargo clean --target` command does not have a default setting, but the command-line help text says it does.
2 parents 2e4cfc2 + 26232c3 commit 6022bbb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo/commands/clean.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pub fn cli() -> App {
77
.about("Remove artifacts that cargo has generated in the past")
88
.arg_package_spec_simple("Package to clean artifacts for")
99
.arg_manifest_path()
10-
.arg_target_triple("Target triple to clean output for (default all)")
10+
.arg_target_triple("Target triple to clean output for")
1111
.arg_target_dir()
1212
.arg_release("Whether or not to clean release artifacts")
1313
.arg_doc("Whether or not to clean just the documentation directory")

0 commit comments

Comments
 (0)