diff --git a/crates/bevy_transform/src/components/global_transform.rs b/crates/bevy_transform/src/components/global_transform.rs index 387eb9df3a78c..80d075f7271f3 100644 --- a/crates/bevy_transform/src/components/global_transform.rs +++ b/crates/bevy_transform/src/components/global_transform.rs @@ -9,7 +9,7 @@ use std::ops::Mul; /// * To place or move an entity, you should set its [`Transform`]. /// * To get the global position of an entity, you should get its [`GlobalTransform`]. /// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`]. -/// * You may use the [`TransformBundle`] to guaranty this. +/// * You may use the [`TransformBundle`] to guarantee this. /// /// ## [`Transform`] and [`GlobalTransform`] /// diff --git a/crates/bevy_transform/src/components/transform.rs b/crates/bevy_transform/src/components/transform.rs index 8ac26a7a22bd0..8dc853e102cda 100644 --- a/crates/bevy_transform/src/components/transform.rs +++ b/crates/bevy_transform/src/components/transform.rs @@ -10,7 +10,7 @@ use std::ops::Mul; /// * To place or move an entity, you should set its [`Transform`]. /// * To get the global position of an entity, you should get its [`GlobalTransform`]. /// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`]. -/// * You may use the [`TransformBundle`] to guaranty this. +/// * You may use the [`TransformBundle`] to guarantee this. /// /// ## [`Transform`] and [`GlobalTransform`] /// diff --git a/crates/bevy_transform/src/lib.rs b/crates/bevy_transform/src/lib.rs index 42a3ee42f43b4..aa03f00497328 100644 --- a/crates/bevy_transform/src/lib.rs +++ b/crates/bevy_transform/src/lib.rs @@ -20,7 +20,7 @@ use prelude::{parent_update_system, Children, GlobalTransform, Parent, PreviousP /// * To place or move an entity, you should set its [`Transform`]. /// * To get the global position of an entity, you should get its [`GlobalTransform`]. /// * To be displayed, an entity must have both a [`Transform`] and a [`GlobalTransform`]. -/// * You may use the [`TransformBundle`] to guaranty this. +/// * You may use the [`TransformBundle`] to guarantee this. /// /// ## [`Transform`] and [`GlobalTransform`] ///