File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 33
33
}
34
34
*/
35
35
36
- // As you can see above, a middleware in made of 3 nested functions (that will get called sequentially):
36
+ // As you can see above, a middleware is made of 3 nested functions (that will get called sequentially):
37
37
// 1) The first level provide the dispatch function and a getState function (if your
38
38
// middleware or your action creator needs to read data from state) to the 2 other levels
39
39
// 2) The second level provide the next function that will allow you to explicitly hand over
@@ -96,7 +96,7 @@ const store_0 = finalCreateStore(reducer)
96
96
// speaker was called with state {} and action { type: 'v.b.k.7.s.e.8.9.f.6.r' }
97
97
// speaker was called with state {} and action { type: '@@redux/INIT' }
98
98
99
- // Now that we have our middelware -ready store instance, let's try again to dispatch our async action:
99
+ // Now that we have our middleware -ready store instance, let's try again to dispatch our async action:
100
100
101
101
var asyncSayActionCreator_1 = function ( message ) {
102
102
return function ( dispatch ) {
You can’t perform that action at this time.
0 commit comments