Skip to content

Fix typo in docs. Noticed by @xorhex. #82

Fix typo in docs. Noticed by @xorhex.

Fix typo in docs. Noticed by @xorhex. #82

Workflow file for this run

name: Code health
on: [ push, pull_request ]
jobs:
clippy:
name: Clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: clippy
- run: cargo clippy --tests --no-deps -- --deny clippy::all
rustfmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: rustfmt
- run: cargo fmt --all --check