diff --git a/docs/book/src/async/12_transition.md b/docs/book/src/async/12_transition.md
index 668785fba..85db85b3f 100644
--- a/docs/book/src/async/12_transition.md
+++ b/docs/book/src/async/12_transition.md
@@ -1,6 +1,6 @@
# ``
-You’ll notice in the `` example that if you keep reloading the data, it keeps flickering back to `"Loading..."`. Sometimes this is fine. For other times, there’s [``](https://docs.rs/leptos/latest/leptos/fn.Suspense.html).
+You’ll notice in the `` example that if you keep reloading the data, it keeps flickering back to `"Loading..."`. Sometimes this is fine. For other times, there’s [``](https://docs.rs/leptos/latest/leptos/fn.Transition.html).
`` behaves exactly the same as ``, but instead of falling back every time, it only shows the fallback the first time. On all subsequent loads, it continues showing the old data until the new data are ready. This can be really handy to prevent the flickering effect, and to allow users to continue interacting with your application.