diff --git a/crates/bevy_math/src/curve/easing.rs b/crates/bevy_math/src/curve/easing.rs index fd163291d20c2..d9e885faea1a6 100644 --- a/crates/bevy_math/src/curve/easing.rs +++ b/crates/bevy_math/src/curve/easing.rs @@ -207,7 +207,7 @@ where /// A [`Curve`] mapping the [unit interval] to itself. /// -/// This leads to a cruve with sudden jumps at the step points and segments with constant values +/// This leads to a curve with sudden jumps at the step points and segments with constant values /// everywhere else. /// /// It uses the function `f(n,t) = round(t * n) / n` diff --git a/examples/math/cubic_splines.rs b/examples/math/cubic_splines.rs index 6a98298ac250d..441ff3d044722 100644 --- a/examples/math/cubic_splines.rs +++ b/examples/math/cubic_splines.rs @@ -127,7 +127,7 @@ impl std::fmt::Display for SplineMode { } /// The current cycling mode, which determines whether the control points should be interpolated -/// cylically (to make a loop). +/// cyclically (to make a loop). #[derive(Clone, Copy, Resource, Default)] enum CyclingMode { #[default]