From edd2f4e6ea65fbafc7542b3e65ce77e298cf4ab4 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Thu, 29 Sep 2022 04:16:28 +0100 Subject: [PATCH] typo --- beta/src/content/apis/react/useEffect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/apis/react/useEffect.md b/beta/src/content/apis/react/useEffect.md index a7e9f11c..2934c9f6 100644 --- a/beta/src/content/apis/react/useEffect.md +++ b/beta/src/content/apis/react/useEffect.md @@ -1848,7 +1848,7 @@ Your cleanup logic should be "symmetrical" to the setup logic, and should stop o }, [serverUrl, roomId]); ``` -[Learn more the Effect lifecycle and how it's independent from the component's lifecycle.](/learn/lifecycle-of-reactive-effects#the-lifecycle-of-an-effect) +[Learn how the Effect lifecycle is different from the component's lifecycle.](/learn/lifecycle-of-reactive-effects#the-lifecycle-of-an-effect) ---