diff --git a/07_dispatch-action.js b/07_dispatch-action.js index 85034012..a497b1a1 100644 --- a/07_dispatch-action.js +++ b/07_dispatch-action.js @@ -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()) @@ -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 \ No newline at end of file +// Go to next tutorial: dispatch-async-action-1.js