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
This commit is contained in:
Rob Parrett 2025-03-02 12:02:23 -07:00 committed by GitHub
parent 1ef334cc25
commit 36cb64b382
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 4 additions and 4 deletions

View File

@ -243,7 +243,7 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Check for typos - name: Check for typos
uses: crate-ci/typos@v1.29.9 uses: crate-ci/typos@v1.30.0
- name: Typos info - name: Typos info
if: failure() if: failure()
run: | run: |

View File

@ -9,7 +9,7 @@ use tracing::error;
pub enum DynamicTextureAtlasBuilderError { pub enum DynamicTextureAtlasBuilderError {
#[error("Couldn't allocate space to add the image requested")] #[error("Couldn't allocate space to add the image requested")]
FailedToAllocateSpace, 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")] #[error("cannot add texture to uninitialized atlas texture")]
UninitializedAtlas, UninitializedAtlas,
/// Attempted to add an uninitialized texture to an atlas /// Attempted to add an uninitialized texture to an atlas

View File

@ -18,7 +18,7 @@ pub enum TextureAtlasBuilderError {
NotEnoughSpace, NotEnoughSpace,
#[error("added a texture with the wrong format in an atlas")] #[error("added a texture with the wrong format in an atlas")]
WrongFormat, 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")] #[error("cannot add texture to uninitialized atlas texture")]
UninitializedAtlas, UninitializedAtlas,
/// Attempted to add an uninitialized texture to an atlas /// Attempted to add an uninitialized texture to an atlas

View File

@ -51,7 +51,7 @@ fn main() {
}), }),
); );
// Fallible observers are also sypported. // Fallible observers are also supported.
app.add_observer(fallible_observer); app.add_observer(fallible_observer);
// If we run the app, we'll see the following output at startup: // If we run the app, we'll see the following output at startup: