File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -569,7 +569,7 @@ Rust's package manager
569569 <cyan,bold>update</> Update dependencies listed in Cargo.lock
570570 <cyan,bold>search</> Search registry for crates
571571 <cyan,bold>publish</> Package and upload this package to the registry
572- <cyan,bold>install</> Install a Rust binary. Default location is $HOME/.cargo/bin
572+ <cyan,bold>install</> Install a Rust binary
573573 <cyan,bold>uninstall</> Uninstall a Rust binary
574574 <cyan>...</> See all commands with <cyan,bold>--list</>
575575
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ use cargo_util::paths;
1515
1616pub fn cli ( ) -> Command {
1717 subcommand ( "install" )
18- . about ( "Install a Rust binary. Default location is $HOME/.cargo/bin " )
18+ . about ( "Install a Rust binary" )
1919 . arg (
2020 Arg :: new ( "crate" )
2121 . value_name ( "CRATE[@<VER>]" )
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ Commands:
3333 update Update dependencies listed in Cargo.lock
3434 search Search registry for crates
3535 publish Package and upload this package to the registry
36- install Install a Rust binary. Default location is $HOME/.cargo/bin
36+ install Install a Rust binary
3737 uninstall Uninstall a Rust binary
3838 ... See all commands with --list
3939
Original file line number Diff line number Diff line change 1- Install a Rust binary. Default location is $HOME/.cargo/bin
1+ Install a Rust binary
22
33Usage: cargo[EXE] install [OPTIONS] [CRATE[@<VER>]]...
44
You can’t perform that action at this time.
0 commit comments