Skip to content

Commit

Permalink
Example Comment Typo Fix (#9427)
Browse files Browse the repository at this point in the history
# Objective

Fixes a typo in one of the comments in an example.

## Solution

Fix the typo in the comment.
  • Loading branch information
okwilkins authored Aug 12, 2023
1 parent e489dcc commit 43fe83b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/2d/2d_gizmos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ fn system(mut gizmos: Gizmos, time: Res<Time>) {
// You may want to increase this for larger circles.
gizmos.circle_2d(Vec2::ZERO, 300., Color::NAVY).segments(64);

// Arcs default amount of segments is linerarly interpolated between
// Arcs default amount of segments is linearly interpolated between
// 1 and 32, using the arc length as scalar.
gizmos.arc_2d(Vec2::ZERO, sin / 10., PI / 2., 350., Color::ORANGE_RED);
}
Expand Down

0 comments on commit 43fe83b

Please sign in to comment.