From e64885dca9de610a1e1c08749de04b9fb114559c Mon Sep 17 00:00:00 2001 From: Emmanouil Zoumpoulakis Date: Sat, 3 Oct 2020 00:24:34 +0200 Subject: [PATCH] Small comment typo in 03.js Fix `implicitely` -> `implicitly` --- src/exercise/03.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exercise/03.js b/src/exercise/03.js index e7752e4b..576f1ea0 100644 --- a/src/exercise/03.js +++ b/src/exercise/03.js @@ -21,7 +21,7 @@ function Toggle({onToggle, children}) { } // 🐨 we'll still get the children from props (as it's passed to us by the -// developers using our component), but we'll get `on` implicitely from +// developers using our component), but we'll get `on` implicitly from // ToggleContext now // 🦉 You can create a helper method to retrieve the context here. Thanks to that, // your context won't be exposed to the user