Skip to content

Commit

Permalink
Auto merge of #6555 - Phlosioneer:patch-1, r=dwijnand
Browse files Browse the repository at this point in the history
Fix incorrect help message

The `cargo clean --target` command does not have a default setting, but the command-line help text says it does.
  • Loading branch information
bors committed Feb 14, 2019
2 parents 2e4cfc2 + 26232c3 commit 6022bbb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bin/cargo/commands/clean.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ pub fn cli() -> App {
.about("Remove artifacts that cargo has generated in the past")
.arg_package_spec_simple("Package to clean artifacts for")
.arg_manifest_path()
.arg_target_triple("Target triple to clean output for (default all)")
.arg_target_triple("Target triple to clean output for")
.arg_target_dir()
.arg_release("Whether or not to clean release artifacts")
.arg_doc("Whether or not to clean just the documentation directory")
Expand Down

0 comments on commit 6022bbb

Please sign in to comment.