Skip to content

Commit dca1b3c

Browse files
committed
Merge pull request reduxjs#323 from moroshko/patch-3
Fix "action creators" link
2 parents 0bb099c + e5e073b commit dca1b3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/Reference/API.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,7 @@ let store = createStoreWithMiddleware(todos, ['Use Redux']);
283283

284284
### `bindActionCreators(actionCreators: Object, dispatch: Function): Object`
285285

286-
Turns an object whose values are [action creators](./Glossary.md#action-creators),
286+
Turns an object whose values are [action creators](./Glossary.md#action-creator),
287287
into an object with the same keys, but with every function wrapped into a `dispatch` call
288288
so they may be invoked directly. This is just a convenience method, as you can call
289289
`store.dispatch(MyActionCreators.doSomething())` yourself just fine.

0 commit comments

Comments
 (0)