Skip to content

Commit 58907e5

Browse files
authored
Fix commented code that points to a different imported scope
1 parent b16464e commit 58907e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: README.md

+1-1
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
```

0 commit comments

Comments
 (0)