Skip to content

Commit 7c64e9c

Browse files
committed
chore(typo): fixes via spell checking
Authored-by: RobWalt <[email protected]>
1 parent 00aefe0 commit 7c64e9c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

crates/bevy_gizmos/src/arcs.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
134134
///
135135
/// # Builder methods
136136
/// The number of segments of the arc (i.e. the level of detail) can be adjusted with the
137-
/// `.segements(...)` method.
137+
/// `.segments(...)` method.
138138
///
139139
/// # Example
140140
/// ```
@@ -190,7 +190,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
190190
///
191191
/// # Builder methods
192192
/// The number of segments of the arc (i.e. the level of detail) can be adjusted with the
193-
/// `.segements(...)` method.
193+
/// `.segments(...)` method.
194194
///
195195
/// # Examples
196196
/// ```
@@ -236,7 +236,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
236236
///
237237
/// # Builder methods
238238
/// The number of segments of the arc (i.e. the level of detail) can be adjusted with the
239-
/// `.segements(...)` method.
239+
/// `.segments(...)` method.
240240
///
241241
/// # Examples
242242
/// ```

crates/bevy_gizmos/src/arrows.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ impl<T: GizmoConfigGroup> Drop for ArrowBuilder<'_, '_, '_, T> {
6767
}
6868

6969
impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
70-
/// Draw an arrow in 3D, from `start` to `end`. Has four tips for convienent viewing from any direction.
70+
/// Draw an arrow in 3D, from `start` to `end`. Has four tips for convenient viewing from any direction.
7171
///
7272
/// This should be called for each frame the arrow needs to be rendered.
7373
///

crates/bevy_gizmos/src/circles.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ fn ellipse_inner(half_size: Vec2, segments: usize) -> impl Iterator<Item = Vec2>
2020
}
2121

2222
impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
23-
/// Draw a ellipse in 3D at `position` with the flat side facing `normal`.
23+
/// Draw an ellipse in 3D at `position` with the flat side facing `normal`.
2424
///
2525
/// This should be called for each frame the ellipse needs to be rendered.
2626
///
@@ -58,7 +58,7 @@ impl<'w, 's, T: GizmoConfigGroup> Gizmos<'w, 's, T> {
5858
}
5959
}
6060

61-
/// Draw a ellipse in 2D.
61+
/// Draw an ellipse in 2D.
6262
///
6363
/// This should be called for each frame the ellipse needs to be rendered.
6464
///

0 commit comments

Comments
 (0)