diff --git a/docs/api.md b/docs/api.md index f9e12eca9..ac0248b0b 100644 --- a/docs/api.md +++ b/docs/api.md @@ -151,7 +151,7 @@ export default connect(null, actionCreators)(TodoApp) ##### Inject `dispatch` and every field in the global state ->Don’t do this! It kills any performance optimizations because `TodoApp` will rerender after every action. +>Don’t do this! It kills any performance optimizations because `TodoApp` will rerender after every state change. >It’s better to have more granular `connect()` on several components in your view hierarchy that each only >listen to a relevant slice of the state.