Skip to content

Commit 2be0292

Browse files
committed
Replace guaranty with guarantee
1 parent a0457a5 commit 2be0292

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

crates/bevy_transform/src/components/global_transform.rs

+1-1
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

+1-1
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

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

0 commit comments

Comments
 (0)