~tsdh/public-inbox

swayr: doc: fix cargo-update plugin name v1 PROPOSED

Marc Poulhiès: 1
 doc: fix cargo-update plugin name

 1 files changed, 2 insertions(+), 2 deletions(-)
#890408 running arch.yml
Export patchset (mbox)
How do I use this?

Copy & paste the following snippet into your terminal to import this patchset into git:

curl -s https://lists.sr.ht/~tsdh/public-inbox/patches/37104/mbox | git am -3
Learn more about email & git

[PATCH swayr] doc: fix cargo-update plugin name Export this patch

install-update command is installed with the cargo-update crate.

Signed-off-by: Marc Poulhiès <dkm@kataplop.net>
---
Hello,

This fixes a simple error in the naming of the cargo plugin to install
for using the 'install-update' command.
Thanks,
Marc

 README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index 3c61d42..f73b30f 100644
--- a/README.md
+++ b/README.md
@@ -278,10 +278,10 @@ Then you can install swayr like so:
cargo install swayr
```

For getting updates easily, I recommend the cargo `install-update` plugin.
For getting updates easily, I recommend the cargo `cargo-update` plugin.
```sh
# Install it once.
cargo install install-update
cargo install cargo-update

# Then you can update all installed rust binary crates including swayr using:
cargo install-update --all
-- 
2.38.1
Marc Poulhiès <dkm@kataplop.net> writes:

Hey Marc,