Skip to content

Commit 954b373

Browse files
committed
Update 10_middleware.js
fixed typos
1 parent f66d328 commit 954b373

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

10_middleware.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
}
3434
*/
3535

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):
3737
// 1) The first level provide the dispatch function and a getState function (if your
3838
// middleware or your action creator needs to read data from state) to the 2 other levels
3939
// 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)
9696
// speaker was called with state {} and action { type: 'v.b.k.7.s.e.8.9.f.6.r' }
9797
// speaker was called with state {} and action { type: '@@redux/INIT' }
9898

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:
100100

101101
var asyncSayActionCreator_1 = function (message) {
102102
return function (dispatch) {

0 commit comments

Comments
 (0)