Skip to content

Commit 774dfde

Browse files
author
Net Gusto
committed
Some typo.
1 parent 1f4c867 commit 774dfde

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
@@ -126,7 +126,7 @@ store_0.dispatch(asyncSayActionCreator_1('Hi'))
126126
function logMiddleware ({ dispatch, getState }) {
127127
return function(next) {
128128
return function (action) {
129-
console.log('logMiddleware action recieved:', action)
129+
console.log('logMiddleware action received:', action)
130130
return next(action)
131131
}
132132
}
@@ -138,7 +138,7 @@ function logMiddleware ({ dispatch, getState }) {
138138
function discardMiddleware ({ dispatch, getState }) {
139139
return function(next) {
140140
return function (action) {
141-
console.log('discardMiddleware action recieved:', action)
141+
console.log('discardMiddleware action received:', action)
142142
}
143143
}
144144
}

0 commit comments

Comments
 (0)