diff --git a/crates/bevy_animation/src/animatable.rs b/crates/bevy_animation/src/animatable.rs index 24b90316faa35..17e11bfe5fd2c 100644 --- a/crates/bevy_animation/src/animatable.rs +++ b/crates/bevy_animation/src/animatable.rs @@ -142,8 +142,7 @@ impl Animatable for Transform { } impl Animatable for Quat { - /// Performs an nlerp, because it's cheaper and easier to combine with other animations, - /// reference: + /// Performs a slerp to smoothly interpolate between quaternions. #[inline] fn interpolate(a: &Self, b: &Self, t: f32) -> Self { // We want to smoothly interpolate between the two quaternions by default,