diff --git a/README.md b/README.md index 349a73955..74f5dd94b 100644 --- a/README.md +++ b/README.md @@ -252,7 +252,7 @@ A React component class that injects state and action creators into your compone export default connect()(TodoApp); ``` -##### Inject `dispatch` and every field in the global state (SLOW!) +##### Inject `dispatch` and every field in the global state (SLOW! TodoApp will rerender after each action) ```js export default connect(state => state)(TodoApp); ```