From 32f40f11b53f171bc4531df92292af79d5c65c17 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mart=C3=ADn=20Maita?= <47983254+mnmaita@users.noreply.github.com> Date: Tue, 3 Sep 2024 02:57:41 +0200 Subject: [PATCH] Bump crate-ci/typos from 1.24.1 to 1.24.3 (#15024) # Objective - Adopts #15015 ## Solution - Fixed a typo that broke the build and prevented updating `crate-ci/typos`. --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 2 +- crates/bevy_ecs/src/query/builder.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f4988610d5..500eb34bb9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -219,7 +219,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check for typos - uses: crate-ci/typos@v1.24.1 + uses: crate-ci/typos@v1.24.3 - name: Typos info if: failure() run: | diff --git a/crates/bevy_ecs/src/query/builder.rs b/crates/bevy_ecs/src/query/builder.rs index ed4e2cd4ba..94a8af27c5 100644 --- a/crates/bevy_ecs/src/query/builder.rs +++ b/crates/bevy_ecs/src/query/builder.rs @@ -261,7 +261,7 @@ impl<'w, D: QueryData, F: QueryFilter> QueryBuilder<'w, D, F> { /// Create a [`QueryState`] with the accesses of the builder. /// - /// Takes `&mut self` to access the innner world reference while initializing + /// Takes `&mut self` to access the inner world reference while initializing /// state for the new [`QueryState`] pub fn build(&mut self) -> QueryState { QueryState::::from_builder(self)