From 331d4175ffd8bfe94b13599bac079ec29ff68051 Mon Sep 17 00:00:00 2001 From: Pedro Gagliardi Date: Tue, 19 Jan 2021 18:27:31 -0300 Subject: [PATCH] Fixed a typo in comments --- src/exercise/03.extra-2.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exercise/03.extra-2.js b/src/exercise/03.extra-2.js index 29d9cd56..7288f623 100644 --- a/src/exercise/03.extra-2.js +++ b/src/exercise/03.extra-2.js @@ -21,7 +21,7 @@ import {useAsync} from '../utils' // 🐨 useReducer with pokemonCacheReducer in your PokemonCacheProvider // 💰 you can grab the one that's in PokemonInfo // 🐨 return your context provider with the value assigned to what you get back from useReducer -// 💰 value={[cache, dispatch]} +// 💰 value=[cache, dispatch] // 💰 make sure you forward the props.children! function pokemonCacheReducer(state, action) {