From 60aa76440962411e7e92db2d540676e611eb5fcd Mon Sep 17 00:00:00 2001 From: Colin Harman Date: Tue, 14 Nov 2017 14:45:42 -0600 Subject: [PATCH] Typo Fix | Updated comment Nothing major, just a typo I noticed within `src/create-store.js` --- 11_src/src/create-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/11_src/src/create-store.js b/11_src/src/create-store.js index 529617ed..82b2c96b 100644 --- a/11_src/src/create-store.js +++ b/11_src/src/create-store.js @@ -16,7 +16,7 @@ import { createStore, applyMiddleware, combineReducers } from 'redux' import promiseMiddleware from './promise-middleware' // We'll just have one reducer in this application but the ES6 import notation below is // pretty interesting to import and produce a reducers hash in one go. Have a look in -// ./reducers.js to see what our reducer actually do (no magic there). +// ./reducers.js to see what our reducers actually do (no magic there). import * as reducers from './reducers' // The data parameter that we see here is used to initialize our Redux store with data. We didn't