From fc51bd6dfd1a6914edcb8a19ede0a4497d142aea Mon Sep 17 00:00:00 2001 From: Dave Rolsky Date: Sun, 10 Dec 2023 17:43:14 -0600 Subject: [PATCH] Small wording tweak in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dad7492..cb0f9e1 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ This action takes the following parameters: | Key | Type | Required? | Description | | ------------------- | ---------------------------------------------- | --------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `command` | string (one of `build`, `test`, or `both`) | no | The command(s) to run. The default is `build`. Running the `test` command will fail with \*BSD targets, non-x86 Windows, and macOS ARM. | -| `target` | string | yes | The target triple to compile for. This should be one of the targets listed by running `rustup target list`. | +| `target` | string | yes | The target triple to compile for. This should be one of the targets found by running `rustup target list`. | | `working-directory` | string | no | The working directory in which to run the `cargo` or `cross` commands. Defaults to the current directory (`.`). | | `toolchain` | string (one of `stable`, `beta`, or `nightly`) | no | The Rust toolchain version to install. The default is `stable`. | | `GITHUB_TOKEN` | string | no | Defaults to the value of `${{ github.token }}`. |