Skip to content

Commit bad019a

Browse files
greeble-devdependabot[bot]
authored andcommitted
(Adopted) Bump crate-ci/typos from 1.36.3 to 1.37.2 #21414 (#21418)
Adopts #21414. Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.36.3 to 1.37.2. --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4039803 commit bad019a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -339,7 +339,7 @@ jobs:
339339
steps:
340340
- uses: actions/checkout@v5
341341
- name: Check for typos
342-
uses: crate-ci/typos@v1.36.3
342+
uses: crate-ci/typos@v1.37.2
343343
- name: Typos info
344344
if: failure()
345345
run: |

crates/bevy_ecs/src/component/required.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ impl RequiredComponents {
296296
// Note that `insert` does not change the order of components, meaning `component_id` will still appear
297297
// before any other component that requires it.
298298
//
299-
// SAFETY: the caller guaranees that `required_component` is valid for the component with ID `required_id`.
299+
// SAFETY: the caller guarantees that `required_component` is valid for the component with ID `required_id`.
300300
all.insert(required_id, required_component);
301301
}
302302

crates/bevy_macro_utils/src/bevy_manifest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ impl BevyManifest {
4242
};
4343

4444
let key = manifest_path.clone();
45-
// TODO: Switch to using RwLockWriteGuard::downgrade when it stablizes.
45+
// TODO: Switch to using RwLockWriteGuard::downgrade when it stabilizes.
4646
MANIFESTS
4747
.write()
4848
.unwrap_or_else(PoisonError::into_inner)

crates/bevy_tasks/src/single_threaded_task_pool.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ mod test {
356356
/// woken by the external thread.
357357
#[test]
358358
fn scoped_spawn() {
359-
let (sender, recever) = async_channel::unbounded();
359+
let (sender, receiver) = async_channel::unbounded();
360360
let task_pool = TaskPool {};
361361
let thread = thread::spawn(move || {
362362
let duration = time::Duration::from_millis(50);
@@ -365,7 +365,7 @@ mod test {
365365
});
366366
task_pool.scope(|scope| {
367367
scope.spawn(async {
368-
recever.recv().await
368+
receiver.recv().await
369369
});
370370
});
371371
}

0 commit comments

Comments
 (0)