Rename Animation::in_progress to is_animating

This commit is contained in:
Héctor Ramón Jiménez 2025-01-28 03:04:31 +01:00
parent 086b06553b
commit 23d42d2827
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 30 additions and 27 deletions

View file

@ -81,7 +81,7 @@ where
/// Returns true if the [`Animation`] is currently in progress.
///
/// An [`Animation`] is in progress when it is transitioning to a different state.
pub fn in_progress(&self, at: Instant) -> bool {
pub fn is_animating(&self, at: Instant) -> bool {
self.raw.in_progress(at)
}