Skip to content

Commit a0c7ddd

Browse files
committed
Replace guaranty with guarantee
1 parent 92571c8 commit a0c7ddd

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/bevy_transform/src/components/global_transform.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::ops::Mul;
99
/// * To place or move an entity, you should set its [`Transform`].
1010
/// * To get the global position of an entity, you should get its [`GlobalTransform`].
1111
/// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`].
12-
/// * You may use the [`TransformBundle`] to guaranty this.
12+
/// * You may use the [`TransformBundle`] to guarantee this.
1313
///
1414
/// ## [`Transform`] and [`GlobalTransform`]
1515
///

crates/bevy_transform/src/components/transform.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ use std::ops::Mul;
1010
/// * To place or move an entity, you should set its [`Transform`].
1111
/// * To get the global position of an entity, you should get its [`GlobalTransform`].
1212
/// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`].
13-
/// * You may use the [`TransformBundle`] to guaranty this.
13+
/// * You may use the [`TransformBundle`] to guarantee this.
1414
///
1515
/// ## [`Transform`] and [`GlobalTransform`]
1616
///

crates/bevy_transform/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ use prelude::{parent_update_system, Children, GlobalTransform, Parent, PreviousP
2020
/// * To place or move an entity, you should set its [`Transform`].
2121
/// * To get the global position of an entity, you should get its [`GlobalTransform`].
2222
/// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`].
23-
/// * You may use the [`TransformBundle`] to guaranty this.
23+
/// * You may use the [`TransformBundle`] to guarantee this.
2424
///
2525
/// ## [`Transform`] and [`GlobalTransform`]
2626
///

0 commit comments

Comments
 (0)