diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ed7b5ef..42efa11 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -56,6 +56,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - name: Link Checker uses: lycheeverse/lychee-action@v2 + + typos: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Check for typos + uses: crate-ci/typos@v1.26.0 + \ No newline at end of file diff --git a/bevy-workshop/src/basics/exercises1.md b/bevy-workshop/src/basics/exercises1.md index f6ed5bc..c7d1ce4 100644 --- a/bevy-workshop/src/basics/exercises1.md +++ b/bevy-workshop/src/basics/exercises1.md @@ -23,7 +23,7 @@ Tips: ## Player Acceleration -Make the player acceletare and decelerate instead of directly changing it's position when a key is pressed. +Make the player accelerate and decelerate instead of directly changing it's position when a key is pressed. Tips: * Store the player current velocity and target velocity in a new component