1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-05 13:15:42 +02:00

cargo-uninstall: fix command (#17285)

Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
This commit is contained in:
Managor 2025-07-20 18:21:16 +03:00 committed by GitHub
parent 7c90966ec2
commit 701b0ab50e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View file

@ -5,4 +5,4 @@
- 설치된 바이너리를 제거: - 설치된 바이너리를 제거:
`cargo remove {{패키지_스펙}}` `cargo uninstall {{패키지_스펙}}`

View file

@ -5,4 +5,4 @@
- 移除一个已安装的二进制文件: - 移除一个已安装的二进制文件:
`cargo remove {{package_spec}}` `cargo uninstall {{package_spec}}`

View file

@ -1,8 +1,8 @@
# cargo uninstall # cargo uninstall
> Remove a Rust binary installed using `cargo install`. > Remove a Rust binary installed globally using `cargo install`.
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-uninstall.html>. > More information: <https://doc.rust-lang.org/cargo/commands/cargo-uninstall.html>.
- Remove an installed binary: - Remove an installed binary:
`cargo remove {{package_spec}}` `cargo uninstall {{package_spec}}`