Skip to content

Commit 26232c3

Browse files
authored
Fix incorrect help message
The `cargo clean --target` command does not have a default setting, but the command-line help text says it does.
1 parent 513d230 commit 26232c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/cargo/commands/clean.rs

Lines changed: 1 addition & 1 deletion
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)