From bfefd48db6b1c7a089f24ecbd78f92907d2908c7 Mon Sep 17 00:00:00 2001 From: Brent Date: Thu, 16 May 2019 13:39:11 -0400 Subject: [PATCH] Update hooks-effect.md --- content/docs/hooks-effect.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-effect.md b/content/docs/hooks-effect.md index 124a5f4f177..142dd6756d6 100644 --- a/content/docs/hooks-effect.md +++ b/content/docs/hooks-effect.md @@ -333,7 +333,7 @@ function FriendStatusWithCounter(props) { } ``` -**Hooks lets us split the code based on what it is doing** rather than a lifecycle method name. React will apply *every* effect used by the component, in the order they were specified. +**Hooks let us split the code based on what it is doing** rather than a lifecycle method name. React will apply *every* effect used by the component, in the order they were specified. ### Explanation: Why Effects Run on Each Update {#explanation-why-effects-run-on-each-update}