From 36cb64b38215c6daf58e6d315937aef507b3c54d Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Sun, 2 Mar 2025 12:02:23 -0700 Subject: [PATCH] Bump `typos` to 1.30.0 (#18097) # Objective Update `typos` and fix newly detected typos. [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md#1300---2025-03-01) (just a dictionary update releases) ## Solution Fix em - Describe the solution used to achieve the objective above. ## Testing CI --- .github/workflows/ci.yml | 2 +- crates/bevy_image/src/dynamic_texture_atlas_builder.rs | 2 +- crates/bevy_image/src/texture_atlas_builder.rs | 2 +- examples/ecs/fallible_systems.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ebfb8f42f8..954c8e9d58 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -243,7 +243,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check for typos - uses: crate-ci/typos@v1.29.9 + uses: crate-ci/typos@v1.30.0 - name: Typos info if: failure() run: | diff --git a/crates/bevy_image/src/dynamic_texture_atlas_builder.rs b/crates/bevy_image/src/dynamic_texture_atlas_builder.rs index 6e013aba29..e8b812194a 100644 --- a/crates/bevy_image/src/dynamic_texture_atlas_builder.rs +++ b/crates/bevy_image/src/dynamic_texture_atlas_builder.rs @@ -9,7 +9,7 @@ use tracing::error; pub enum DynamicTextureAtlasBuilderError { #[error("Couldn't allocate space to add the image requested")] FailedToAllocateSpace, - /// Attempted to add a texture to an uninitialzied atlas + /// Attempted to add a texture to an uninitialized atlas #[error("cannot add texture to uninitialized atlas texture")] UninitializedAtlas, /// Attempted to add an uninitialized texture to an atlas diff --git a/crates/bevy_image/src/texture_atlas_builder.rs b/crates/bevy_image/src/texture_atlas_builder.rs index 443660eefc..1da85005a2 100644 --- a/crates/bevy_image/src/texture_atlas_builder.rs +++ b/crates/bevy_image/src/texture_atlas_builder.rs @@ -18,7 +18,7 @@ pub enum TextureAtlasBuilderError { NotEnoughSpace, #[error("added a texture with the wrong format in an atlas")] WrongFormat, - /// Attempted to add a texture to an uninitialzied atlas + /// Attempted to add a texture to an uninitialized atlas #[error("cannot add texture to uninitialized atlas texture")] UninitializedAtlas, /// Attempted to add an uninitialized texture to an atlas diff --git a/examples/ecs/fallible_systems.rs b/examples/ecs/fallible_systems.rs index 59e82371a3..39d29fbebd 100644 --- a/examples/ecs/fallible_systems.rs +++ b/examples/ecs/fallible_systems.rs @@ -51,7 +51,7 @@ fn main() { }), ); - // Fallible observers are also sypported. + // Fallible observers are also supported. app.add_observer(fallible_observer); // If we run the app, we'll see the following output at startup: