diff --git a/curriculum/challenges/english/blocks/lecture-understanding-effects-and-referencing-values-in-react/67d1ec6711b62f1cc5cc52e1.md b/curriculum/challenges/english/blocks/lecture-understanding-effects-and-referencing-values-in-react/67d1ec6711b62f1cc5cc52e1.md index eba1ca2718c..cf1394476ab 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-effects-and-referencing-values-in-react/67d1ec6711b62f1cc5cc52e1.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-effects-and-referencing-values-in-react/67d1ec6711b62f1cc5cc52e1.md @@ -79,7 +79,7 @@ useEffect(() => { }, []); ``` -If you pass in the `count` state as a dependency, the effect runs when the component first render, and when `count` changes: +If you pass in the `count` state as a dependency, the effect runs when the component first renders, and when `count` changes: ```js useEffect(() => {