Fix typo in Hooks FAQ

This commit is contained in:
Héliton Nordt
2018-10-28 16:40:21 -03:00
committed by GitHub
parent a8bf119e01
commit 7fd8a8dfd8

View File

@@ -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) {