From 825a17a2aa5398fab4f881ab4177cfdceb0cebe9 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Wed, 7 May 2025 16:26:54 +0300 Subject: [PATCH] docs: Fix typos in cargo commands * Cargo's `--features` flag is plural * The feature is `use-rsvg` not `user-rsvg` --- .github/workflows/build-and-test.yml | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index a3b5ea2..df88ba1 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -110,7 +110,7 @@ jobs: build-executables: name: Build executables runs-on: ${{ matrix.os }} - # note that we are not building with `user-rsvg` support here + # note that we are not building with `use-rsvg` support here # so using lukaj-test docker image with pre-installed dependencies # is not required strategy: diff --git a/README.md b/README.md index 618543f..8777fa4 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ additional development libraries. ```bash $ sudo apt-get install build-essential libcairo2-dev libgdk-pixbuf-2.0-dev \ libglib2.0-dev libpango1.0-dev libsdl2-dev libxml2-dev - $ cargo install lukaj --feature user-rsvg + $ cargo install lukaj --features use-rsvg ```