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:
parent
1ef334cc25
commit
36cb64b382
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -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: |
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user