From fbef211027c17c36d0f7afb80fe64f1a5c51fa70 Mon Sep 17 00:00:00 2001 From: Brian Tripp <46498972+bdtripp@users.noreply.github.com> Date: Wed, 10 Dec 2025 12:11:57 -0600 Subject: [PATCH] fix(curriculum): typo in What Are Effects in React (#64464) --- .../67d1ec6711b62f1cc5cc52e1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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(() => {