Skip to content

Commit

Permalink
Merge pull request facebook#40 from sobering/master
Browse files Browse the repository at this point in the history
Remove erroneous paren from dispatcher example
  • Loading branch information
fisherwebdev committed Aug 28, 2014
2 parents 5dbbdeb + 2c6fb5c commit 9869780
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Dispatcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ flightDispatcher.dispatch({
This payload is digested by `CityStore`:

```
flightDispatcher.register(function(payload)) {
flightDispatcher.register(function(payload) {
if (payload.actionType === 'city-update') {
CityStore.city = payload.selectedCity;
}
Expand Down

0 comments on commit 9869780

Please sign in to comment.