From 2dccf4699d60cc6a1c3ad2f5b4301c3b2da71538 Mon Sep 17 00:00:00 2001 From: Angelos Orfanakos Date: Sat, 25 May 2019 20:44:12 +0300 Subject: [PATCH] Remove redundant "reading" word from hooks faq (#2036) --- content/docs/hooks-faq.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-faq.md b/content/docs/hooks-faq.md index 422073a9..12e1db0b 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -656,7 +656,7 @@ Note that in the above example we **need** to keep the function in the dependenc ### What can I do if my effect dependencies change too often? {#what-can-i-do-if-my-effect-dependencies-change-too-often} -Sometimes, your effect may be using reading state that changes too often. You might be tempted to omit that state from a list of dependencies, but that usually leads to bugs: +Sometimes, your effect may be using state that changes too often. You might be tempted to omit that state from a list of dependencies, but that usually leads to bugs: ```js{6,9} function Counter() {