From 951604090b008286f3c363c25d6122f93c3e5a20 Mon Sep 17 00:00:00 2001 From: Mayada <115709272+Maddily@users.noreply.github.com> Date: Wed, 13 Nov 2024 10:40:57 +0200 Subject: [PATCH] Fix typo under Values section --- files/en-us/web/css/transition-timing-function/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/en-us/web/css/transition-timing-function/index.md b/files/en-us/web/css/transition-timing-function/index.md index 8adb6d99d8c6223..ddd762bd9bcf794 100644 --- a/files/en-us/web/css/transition-timing-function/index.md +++ b/files/en-us/web/css/transition-timing-function/index.md @@ -58,7 +58,7 @@ transition-timing-function: unset; - : Each {{cssxref("<easing-function>")}} represents the easing function to link to the corresponding property to transition, as defined in {{ cssxref("transition-property") }}. - The non-step keyword values (ease, linear, ease-in-out, etc.) each represent cubic Bézier curve with fixed four point values, with the cubic-bezier() function value allowing for a non-predefined value. The step easing functions divides the input time into a specified number of intervals that are equal in length. It is defined by a number of steps and a step position. + The non-step keyword values (ease, linear, ease-in-out, etc.) each represent cubic Bézier curve with fixed four point values, with the cubic-bezier() function value allowing for a non-predefined value. The step easing functions divide the input time into a specified number of intervals that are equal in length. It is defined by a number of steps and a step position. - `ease` - : Equal to `cubic-bezier(0.25, 0.1, 0.25, 1.0)`, the default value, increases in velocity towards the middle of the transition, slowing back down at the end.