Skip to content

Commit 36ade6e

Browse files
authored
Merge pull request piotrwitek#67 from piotrwitek/amitdahan-1
Amitdahan 1
2 parents b16464e + d5849b8 commit 36ade6e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -767,7 +767,7 @@ export const countersActions = {
767767
import store from '@src/store';
768768
import { countersActions } from '@src/redux/counters';
769769

770-
// store.dispatch(actionCreators.increment(1)); // Error: Expected 0 arguments, but got 1.
770+
// store.dispatch(countersActions.increment(1)); // Error: Expected 0 arguments, but got 1.
771771
store.dispatch(countersActions.increment()); // OK => { type: "INCREMENT" }
772772

773773
```
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import store from '@src/store';
22
import { countersActions } from '@src/redux/counters';
33

4-
// store.dispatch(actionCreators.increment(1)); // Error: Expected 0 arguments, but got 1.
4+
// store.dispatch(countersActions.increment(1)); // Error: Expected 0 arguments, but got 1.
55
store.dispatch(countersActions.increment()); // OK => { type: "INCREMENT" }

0 commit comments

Comments
 (0)