Skip to content

Commit

Permalink
Fix incorrect help message
Browse files Browse the repository at this point in the history
The `cargo clean --target` command does not have a default setting, but the command-line help text says it does.
  • Loading branch information
Phlosioneer authored Jan 17, 2019
1 parent 513d230 commit 26232c3
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 26232c3

Please sign in to comment.