From 94606302fccbbaa9ef502be7c464acd82cd0ba29 Mon Sep 17 00:00:00 2001 From: Strek Date: Thu, 8 Sep 2022 15:14:07 +0530 Subject: [PATCH] fix typo --- beta/src/content/learn/thinking-in-react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/beta/src/content/learn/thinking-in-react.md b/beta/src/content/learn/thinking-in-react.md index 797f0f0c..4b2fcfdb 100644 --- a/beta/src/content/learn/thinking-in-react.md +++ b/beta/src/content/learn/thinking-in-react.md @@ -455,7 +455,7 @@ function SearchBar({ filterText, inStockOnly }) { placeholder="Search..."/> ``` -However, you haven't added any code to respond to the user actions like typing yet. This wil be your final step. +However, you haven't added any code to respond to the user actions like typing yet. This will be your final step. ## Step 5: Add inverse data flow {/*step-5-add-inverse-data-flow*/}