Skip to content

Commit

Permalink
Merge pull request facebook#79 from sethmcl/master
Browse files Browse the repository at this point in the history
[docs] added missing semicolon in Dispatcher code sample
  • Loading branch information
fisherwebdev committed Oct 12, 2014
2 parents 8b091bf + b7c3c57 commit a1bb29c
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 @@ -47,7 +47,7 @@ var CountryStore = {country: null};
var CityStore = {city: null};
// Keeps track of the base flight price of the selected city
var FlightPriceStore = {price: null}
var FlightPriceStore = {price: null};
```

When a user changes the selected city, we dispatch the payload:
Expand Down

0 comments on commit a1bb29c

Please sign in to comment.