diff --git a/crates/bevy_gizmos/src/arcs.rs b/crates/bevy_gizmos/src/arcs.rs index 4c93f5ec02bea..26f95c03465a9 100644 --- a/crates/bevy_gizmos/src/arcs.rs +++ b/crates/bevy_gizmos/src/arcs.rs @@ -134,7 +134,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { /// /// # Builder methods /// The number of segments of the arc (i.e. the level of detail) can be adjusted with the - /// `.segements(...)` method. + /// `.segments(...)` method. /// /// # Example /// ``` @@ -190,7 +190,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { /// /// # Builder methods /// The number of segments of the arc (i.e. the level of detail) can be adjusted with the - /// `.segements(...)` method. + /// `.segments(...)` method. /// /// # Examples /// ``` @@ -236,7 +236,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { /// /// # Builder methods /// The number of segments of the arc (i.e. the level of detail) can be adjusted with the - /// `.segements(...)` method. + /// `.segments(...)` method. /// /// # Examples /// ``` diff --git a/crates/bevy_gizmos/src/arrows.rs b/crates/bevy_gizmos/src/arrows.rs index b5416e412f558..541fc6edab79b 100644 --- a/crates/bevy_gizmos/src/arrows.rs +++ b/crates/bevy_gizmos/src/arrows.rs @@ -67,7 +67,7 @@ impl Drop for ArrowBuilder<'_, '_, '_, T> { } impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { - /// Draw an arrow in 3D, from `start` to `end`. Has four tips for convienent viewing from any direction. + /// Draw an arrow in 3D, from `start` to `end`. Has four tips for convenient viewing from any direction. /// /// This should be called for each frame the arrow needs to be rendered. /// diff --git a/crates/bevy_gizmos/src/circles.rs b/crates/bevy_gizmos/src/circles.rs index bf9b185a02e83..f8b48753b46a1 100644 --- a/crates/bevy_gizmos/src/circles.rs +++ b/crates/bevy_gizmos/src/circles.rs @@ -20,7 +20,7 @@ fn ellipse_inner(half_size: Vec2, segments: usize) -> impl Iterator } impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { - /// Draw a ellipse in 3D at `position` with the flat side facing `normal`. + /// Draw an ellipse in 3D at `position` with the flat side facing `normal`. /// /// This should be called for each frame the ellipse needs to be rendered. /// @@ -58,7 +58,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> { } } - /// Draw a ellipse in 2D. + /// Draw an ellipse in 2D. /// /// This should be called for each frame the ellipse needs to be rendered. ///