Skip to content

Commit

Permalink
chore(typo): fixes via spell checking
Browse files Browse the repository at this point in the history
Authored-by: RobWalt <robwalter96@gmail.com>
  • Loading branch information
RobWalt committed Feb 1, 2024
1 parent 00aefe0 commit 7c64e9c
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions crates/bevy_gizmos/src/arcs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
/// ```
Expand Down Expand Up @@ -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
/// ```
Expand Down Expand Up @@ -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
/// ```
Expand Down
2 changes: 1 addition & 1 deletion crates/bevy_gizmos/src/arrows.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl<T: GizmoConfigGroup> 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.
///
Expand Down
4 changes: 2 additions & 2 deletions crates/bevy_gizmos/src/circles.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ fn ellipse_inner(half_size: Vec2, segments: usize) -> impl Iterator<Item = Vec2>
}

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.
///
Expand Down Expand Up @@ -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.
///
Expand Down

0 comments on commit 7c64e9c

Please sign in to comment.