File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -339,7 +339,7 @@ jobs:
339
339
steps :
340
340
- uses : actions/checkout@v5
341
341
- name : Check for typos
342
- uses : crate-ci/typos@v1.36.3
342
+ uses : crate-ci/typos@v1.37.2
343
343
- name : Typos info
344
344
if : failure()
345
345
run : |
Original file line number Diff line number Diff line change @@ -296,7 +296,7 @@ impl RequiredComponents {
296
296
// Note that `insert` does not change the order of components, meaning `component_id` will still appear
297
297
// before any other component that requires it.
298
298
//
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`.
300
300
all. insert ( required_id, required_component) ;
301
301
}
302
302
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ impl BevyManifest {
42
42
} ;
43
43
44
44
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 .
46
46
MANIFESTS
47
47
. write ( )
48
48
. unwrap_or_else ( PoisonError :: into_inner)
Original file line number Diff line number Diff line change @@ -356,7 +356,7 @@ mod test {
356
356
/// woken by the external thread.
357
357
#[ test]
358
358
fn scoped_spawn ( ) {
359
- let ( sender, recever ) = async_channel:: unbounded ( ) ;
359
+ let ( sender, receiver ) = async_channel:: unbounded ( ) ;
360
360
let task_pool = TaskPool { } ;
361
361
let thread = thread:: spawn ( move || {
362
362
let duration = time:: Duration :: from_millis ( 50 ) ;
@@ -365,7 +365,7 @@ mod test {
365
365
} ) ;
366
366
task_pool. scope ( |scope| {
367
367
scope. spawn ( async {
368
- recever . recv ( ) . await
368
+ receiver . recv ( ) . await
369
369
} ) ;
370
370
} ) ;
371
371
}
You can’t perform that action at this time.
0 commit comments