From a12f74c918a28efa84e853447f40cf74491b6b50 Mon Sep 17 00:00:00 2001 From: Misha Moroshko Date: Thu, 25 Oct 2018 21:15:05 -0700 Subject: [PATCH] or => and --- content/docs/hooks-state.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/hooks-state.md b/content/docs/hooks-state.md index cb1adb3a1a0..72cdad8acd3 100644 --- a/content/docs/hooks-state.md +++ b/content/docs/hooks-state.md @@ -258,7 +258,7 @@ function ExampleWithManyStates() { const [todos, setTodos] = useState([{ text: 'Learn Hooks' }]); ``` -In the above component, we have `age`, `fruit`, or `todos` as local variables, and we can update them individually: +In the above component, we have `age`, `fruit`, and `todos` as local variables, and we can update them individually: ```js function handleOrangeClick() {