From 169e892ab63f086d0a4991305cadf9d804e33437 Mon Sep 17 00:00:00 2001 From: Quentin Santos Date: Sat, 8 Jun 2024 09:42:14 +0200 Subject: [PATCH] Fix trailing spaces --- docs/github-action.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/github-action.md b/docs/github-action.md index 7ca474e..9ffad81 100644 --- a/docs/github-action.md +++ b/docs/github-action.md @@ -18,24 +18,24 @@ jobs: - name: Check spelling of file.txt uses: crate-ci/typos@master - with: + with: files: ./file.txt - name: Use custom config file uses: crate-ci/typos@master - with: + with: files: ./file.txt config: ./myconfig.toml - name: Ignore implicit configuration file uses: crate-ci/typos@master - with: + with: files: ./file.txt isolated: true - name: Writes changes in the local checkout uses: crate-ci/typos@master - with: + with: write_changes: true ```