From d7222a12ef697ae0648bd288b1fd332d48252b9a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Rinc=C3=B3n=20Hdez?= <25558870+Rinconx64@users.noreply.github.com> Date: Tue, 1 Nov 2022 08:46:14 -0500 Subject: [PATCH] [docs] Tutorial easing equations reference I changed the link because the previous one is a reference to a page that no longer exists. Use Svelte documentation seems better to me --- site/content/tutorial/09-motion/01-tweened/text.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/content/tutorial/09-motion/01-tweened/text.md b/site/content/tutorial/09-motion/01-tweened/text.md index 50cd0c2fba..9f684c583e 100644 --- a/site/content/tutorial/09-motion/01-tweened/text.md +++ b/site/content/tutorial/09-motion/01-tweened/text.md @@ -28,7 +28,7 @@ Clicking the buttons causes the progress bar to animate to its new value. It's a ``` -> The `svelte/easing` module contains the [Penner easing equations](https://web.archive.org/web/20190805215728/http://robertpenner.com/easing/), or you can supply your own `p => t` function where `p` and `t` are both values between 0 and 1. +> The `svelte/easing` module contains [easing functions](https://svelte.dev/docs#run-time-svelte-easing) for you to use, or you can supply your own `p => t` function where `p` and `t` are both values between 0 and 1. The full set of options available to `tweened`: