From 5b26f58285a3a3c51054cbbfd6bba15cab14b2b2 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Wed, 27 Aug 2025 14:20:22 +0300 Subject: Fix typos --- src/layout/scrolling.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/layout/scrolling.rs') diff --git a/src/layout/scrolling.rs b/src/layout/scrolling.rs index 551fa692..17e6673f 100644 --- a/src/layout/scrolling.rs +++ b/src/layout/scrolling.rs @@ -4025,7 +4025,7 @@ impl Column { pub fn offset_move_anim_current(&mut self, offset: f64) { if let Some(move_) = self.move_animation.as_mut() { // If the anim is almost done, there's little point trying to offset it; we can let - // things jump. If it turns out like a bad idea, we could restart the anim intead. + // things jump. If it turns out like a bad idea, we could restart the anim instead. let value = move_.anim.value(); if value > 0.001 { move_.from += offset / value; -- cgit