From 8ff536bda8a3229e4778a2c845f7d0adc090416c Mon Sep 17 00:00:00 2001 From: Ankita Sood Date: Thu, 25 Sep 2025 18:45:16 -0500 Subject: [PATCH] docs: update text (#64095) replace `above` with `below` PR Close #64095 --- adev/src/content/guide/animations/css.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/adev/src/content/guide/animations/css.md b/adev/src/content/guide/animations/css.md index b91b3743d42..64e66355f36 100644 --- a/adev/src/content/guide/animations/css.md +++ b/adev/src/content/guide/animations/css.md @@ -167,7 +167,7 @@ In this example, the `rotate` and `fade-in` animations fire at the same time, bu ### Animating the items of a reordering list -Items in a `@for` loop will be removed and re-added, which will fire off animations using `@starting-styles` for entry animations. Alternatively, you can use `animate.enter` for this same behavior. Use `animate.leave` to animate elements as they are removed, as seen in the example above. +Items in a `@for` loop will be removed and re-added, which will fire off animations using `@starting-styles` for entry animations. Alternatively, you can use `animate.enter` for this same behavior. Use `animate.leave` to animate elements as they are removed, as seen in the example below.