Skip to content

Commit b516e78

Browse files
Bump crate-ci/typos from 1.31.1 to 1.32.0 (#19072)
Adopted #19066. Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.31.1 to 1.32.0. --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 831fe30 commit b516e78

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ jobs:
292292
steps:
293293
- uses: actions/checkout@v4
294294
- name: Check for typos
295-
uses: crate-ci/typos@v1.31.1
295+
uses: crate-ci/typos@v1.32.0
296296
- name: Typos info
297297
if: failure()
298298
run: |

benches/benches/bevy_picking/ray_mesh_intersection.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ fn create_mesh(vertices_per_side: u32) -> SimpleMesh {
3737
for p in 0..vertices_per_side.pow(2) {
3838
let (x, z) = p_to_xz_norm(p, vertices_per_side);
3939

40-
// Push a new vertice to the mesh. We translate all vertices so the final square is
40+
// Push a new vertex to the mesh. We translate all vertices so the final square is
4141
// centered at (0, 0), instead of (0.5, 0.5).
4242
positions.push([x - 0.5, 0.0, z - 0.5]);
4343

crates/bevy_ecs/src/component.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2049,7 +2049,7 @@ impl Components {
20492049
}
20502050

20512051
/// Gets the [`ComponentDescriptor`] of the component with this [`ComponentId`] if it is present.
2052-
/// This will return `None` only if the id is neither regisered nor queued to be registered.
2052+
/// This will return `None` only if the id is neither registered nor queued to be registered.
20532053
///
20542054
/// Currently, the [`Cow`] will be [`Cow::Owned`] if and only if the component is queued. It will be [`Cow::Borrowed`] otherwise.
20552055
///
@@ -2073,7 +2073,7 @@ impl Components {
20732073
}
20742074

20752075
/// Gets the name of the component with this [`ComponentId`] if it is present.
2076-
/// This will return `None` only if the id is neither regisered nor queued to be registered.
2076+
/// This will return `None` only if the id is neither registered nor queued to be registered.
20772077
///
20782078
/// This will return an incorrect result if `id` did not come from the same world as `self`. It may return `None` or a garbage value.
20792079
#[inline]

crates/bevy_ecs/src/observer/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ pub struct ObserverTrigger {
349349
components: SmallVec<[ComponentId; 2]>,
350350
/// The entity the trigger targeted.
351351
pub target: Entity,
352-
/// The location of the source code that triggered the obserer.
352+
/// The location of the source code that triggered the observer.
353353
pub caller: MaybeLocation,
354354
}
355355

0 commit comments

Comments
 (0)