Skip to content

Commit 49f22f5

Browse files
authored
Fix counter example
1 parent 1d160ab commit 49f22f5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ const store = createStore(reducer)
268268
store.dispatch(counter.actions.increment())
269269
// -> { counter: 1, user: {} }
270270
store.dispatch(counter.actions.increment())
271-
// -> { counter: 1, user: {} }
271+
// -> { counter: 2, user: {} }
272272
store.dispatch(counter.actions.multiply(3))
273273
// -> { counter: 6, user: {} }
274274
console.log(`${counter.actions.decrement}`)

0 commit comments

Comments
 (0)