From 1b7d538960c4d4c9a83b1ef1f6298563d6a343be Mon Sep 17 00:00:00 2001 From: Oliver Day Date: Wed, 16 Apr 2025 16:48:09 -0700 Subject: [PATCH] Update typo in README.mdx --- exercises/06.animation/03.problem.roll-reveal/README.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/06.animation/03.problem.roll-reveal/README.mdx b/exercises/06.animation/03.problem.roll-reveal/README.mdx index 3cede64..58f9014 100644 --- a/exercises/06.animation/03.problem.roll-reveal/README.mdx +++ b/exercises/06.animation/03.problem.roll-reveal/README.mdx @@ -28,7 +28,7 @@ ### Cubic-Bézier curves -Instead of basic transition timing functions like `linear` or `ease-in`, uou can use the [`📜 cubic-bezier()`](https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function#using_the_cubic-bezier_function) CSS function to create bespoke [📜 Bézier curve](https://developer.mozilla.org/en-US/docs/Glossary/Bezier_curve) easings for your animations. +Instead of basic transition timing functions like `linear` or `ease-in`, you can use the [`📜 cubic-bezier()`](https://developer.mozilla.org/en-US/docs/Web/CSS/easing-function#using_the_cubic-bezier_function) CSS function to create bespoke [📜 Bézier curve](https://developer.mozilla.org/en-US/docs/Glossary/Bezier_curve) easings for your animations. 💰 It's very hard to "visualise" what the `cubic-bezier()` function does, but luckily for us, there are some great online tools to help. [cubic-bezier.com](https://cubic-bezier.com) is a fantastic example!