From 7b35c20291ab3968e79de65d1f01b7f8c943d662 Mon Sep 17 00:00:00 2001 From: Yashu Mittal Date: Tue, 17 Feb 2026 18:14:39 +0530 Subject: [PATCH 1/2] feat: add spell checker GitHub Action --- .config/spell-check.toml | 10 ++++++++++ .github/workflows/spelling.yml | 25 +++++++++++++++++++++++++ 2 files changed, 35 insertions(+) create mode 100644 .config/spell-check.toml create mode 100644 .github/workflows/spelling.yml diff --git a/.config/spell-check.toml b/.config/spell-check.toml new file mode 100644 index 00000000..cd2391d1 --- /dev/null +++ b/.config/spell-check.toml @@ -0,0 +1,10 @@ +[files] +extend-exclude = [ + ".next", + ".idea", + ".source", + "node_modules", + "cloudflare-env.d.ts", + # Biome config is schema defined + "biome.json" +] diff --git a/.github/workflows/spelling.yml b/.github/workflows/spelling.yml new file mode 100644 index 00000000..78ae31c3 --- /dev/null +++ b/.github/workflows/spelling.yml @@ -0,0 +1,25 @@ +name: spelling + +permissions: + contents: read + +on: + push: + branches: + - main + pull_request: + +env: + CLICOLOR: 1 + +jobs: + spelling: + name: Spell Check with Typos + runs-on: ubuntu-latest + steps: + - name: Checkout Actions Repository + uses: actions/checkout@v4 + - name: Spell Check Repo + uses: crate-ci/typos@v1.34.0 + with: + config: ./.config/spell-check.toml From 2ef1c16a9f083ead1c3c9d292f5f73ae7cc7f81e Mon Sep 17 00:00:00 2001 From: Yashu Mittal Date: Tue, 17 Feb 2026 18:23:16 +0530 Subject: [PATCH 2/2] fix: typos --- content/api-reference/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/api-reference/index.mdx b/content/api-reference/index.mdx index 09f97f85..6f7d277e 100644 --- a/content/api-reference/index.mdx +++ b/content/api-reference/index.mdx @@ -12,7 +12,7 @@ Welcome to the LogChimp API Reference. If you’re new to LogChimp, start with the [Guide](/guide), then come back here for details on specific endpoints. -LogChimp uses REST-ful APIs to build the backend on which it delivers content to the client side. +LogChimp uses REST-full APIs to build the backend on which it delivers content to the client side. ## Path & Version