diff --git a/flux.md b/flux.md index 228cba7b6..32455acb3 100644 --- a/flux.md +++ b/flux.md @@ -131,7 +131,8 @@ d.register(function (data) { ## With Views -Components can listen to Dispatchers. +### Listen to dispatchers +Views (React Components) can listen to Dispatchers. ```js var TodoApp = React.createClass({ @@ -153,7 +154,8 @@ var TodoApp = React.createClass({ }); ``` -Or to Stores. +### Listen to Stores +Or to Stores's `change` events. ```js {