From d4f5ac4b3f7a6f175ed3a84924007317012725be Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Wed, 21 Mar 2018 09:26:51 -0700 Subject: [PATCH] Fix usage text for cargo install The current text was accidentally copied from `cargo init`. --- src/bin/commands/install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/commands/install.rs b/src/bin/commands/install.rs index 4c259e4d3..a3a62fd66 100644 --- a/src/bin/commands/install.rs +++ b/src/bin/commands/install.rs @@ -6,7 +6,7 @@ use cargo::util::ToUrl; pub fn cli() -> App { subcommand("install") - .about("Create a new cargo package in an existing directory") + .about("Install a Rust binary") .arg(Arg::with_name("crate").multiple(true)) .arg( opt("version", "Specify a version to install from crates.io") -- 2.30.2