[go: nahoru, domu]

Fix gif link for EaseInSine

Test: doc change only
Change-Id: I433f715794719cbb5a3bff35cc34c8a235f034f8
diff --git a/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/EasingFunctions.kt b/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/EasingFunctions.kt
index 43a64b1..1b89b4f 100644
--- a/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/EasingFunctions.kt
+++ b/compose/animation/animation-core/src/commonMain/kotlin/androidx/compose/animation/core/EasingFunctions.kt
@@ -51,7 +51,7 @@
 /**
  * Easing Curve that starts slowly and ends quickly. Similar to EaseIn, but with slightly less abrupt beginning
  *
- *  ![EaseInSine Curve](https://developer.android.com/images/reference/androidx/compose/animation-core/ease_out.gif)
+ *  ![EaseInSine Curve](https://developer.android.com/images/reference/androidx/compose/animation-core/ease_in_sine.gif)
  */
 val EaseInSine: Easing = CubicBezierEasing(0.12f, 0f, 0.39f, 0f)