Merge pull request #704 from Sean1708/patch-1

Fix spelling mistake in cargo-fmt usage string.
This commit is contained in:
Marcus Klaas de Vries 2015-12-16 18:43:19 +01:00
commit 41169dfdf5

View File

@ -46,7 +46,7 @@ fn main() {
fn print_usage(opts: &Options, reason: &str) {
let msg = format!("{}\nusage: cargo fmt [options]", reason);
println!("{}\nThis utility formats all bin and lib files of the current crate using rustfmt. \
Arguments after `--` are passes to rustfmt.",
Arguments after `--` are passed to rustfmt.",
opts.usage(&msg));
}