Skip to content

Commit

Permalink
Merge pull request #12 from chrisblossom/master
Browse files Browse the repository at this point in the history
fix($readme): fixed syntax of example code
  • Loading branch information
faceyspacey authored Jun 18, 2017
2 parents 2704cf7 + 9541e04 commit 63e7440
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ const routesMap = {
const { reducer, middleware, enhancer } = connectRoutes(history, routesMap) // yes, 3 redux aspects

// and you already know how the story ends:
const rootReducer = combineReducers({ location: reducer: userId: userIdReducer })
const rootReducer = combineReducers({ location: reducer, userId: userIdReducer })
const middlewares = applyMiddleware(middleware)
const store = createStore(rootReducer, compose(enhancer, middlewares))
```
Expand Down

0 comments on commit 63e7440

Please sign in to comment.