Skip to content

Commit

Permalink
Merge pull request reactjs#11 from wbecker/patch-5
Browse files Browse the repository at this point in the history
Issues with the letter 's'
  • Loading branch information
happypoulp committed Aug 5, 2015
2 parents a910eb3 + b08027f commit bd350d5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions 07_dispatch-action.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ store_0.dispatch({
// userReducer was called with state {} and action { type: 'AN_ACTION' }
// itemsReducer was called with state [] and action { type: 'AN_ACTION' }

// Each reducer is effectively called but since none of our reducer cares about this action type,
// Each reducer is effectively called but since none of our reducers care about this action type,
// the state is left unchanged:

console.log('store_0 state after action AN_ACTION:', store_0.getState())
Expand Down Expand Up @@ -95,4 +95,4 @@ console.log('store_0 state after action SET_NAME:', store_0.getState())
// So far here is the flow of our application
// ActionCreator -> Action -> dispatcher -> reducer

// Go to next tutorial: dispatch-async-action-1.js
// Go to next tutorial: dispatch-async-action-1.js

0 comments on commit bd350d5

Please sign in to comment.