From 2753103942afc262103c15faf9ab2e7495b3f5c2 Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Mon, 27 Jan 2025 05:22:37 +0100 Subject: Fix broken intra-doc link in `animation` --- core/src/animation.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/src/animation.rs b/core/src/animation.rs index fe2b29b2..29dacd4d 100644 --- a/core/src/animation.rs +++ b/core/src/animation.rs @@ -89,6 +89,8 @@ where /// closure provided to calculate the different keyframes of interpolated values. /// /// If the [`Animation`] state is a `bool`, you can use the simpler [`interpolate`] method. + /// + /// [`interpolate`]: Animation::interpolate pub fn interpolate_with(&self, f: impl Fn(T) -> I, at: Instant) -> I where I: Interpolable, -- cgit