From 0e3d2a690c0d4c794eca50a7534fc243e8773554 Mon Sep 17 00:00:00 2001 From: Cory House Date: Wed, 28 Nov 2018 13:47:22 -0600 Subject: [PATCH] Grammar fix (#1435) --- 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 4f27ac1f..0a2e728c 100644 --- a/content/docs/hooks-faq.md +++ b/content/docs/hooks-faq.md @@ -407,7 +407,7 @@ function TodosApp() { } ``` -Any child in the tree inside `TodosApp` can read use the `dispatch` function to pass actions up to `TodosApp`: +Any child in the tree inside `TodosApp` can use the `dispatch` function to pass actions up to `TodosApp`: ```js{2,3} function DeepChild(props) {