docs(flux-todo-list): fix TodoStore syntax

Add missing semicolon behind `TodoStore#addChangeListener'
This commit is contained in:
Michael Chan
2014-08-17 19:37:10 -07:00
parent fd1040b663
commit 29ceb7761c

View File

@@ -196,7 +196,7 @@ var TodoStore = merge(EventEmitter.prototype, {
*/
removeChangeListener: function(callback) {
this.removeListener(CHANGE_EVENT, callback);
}
},
dispatcherIndex: AppDispatcher.register(function(payload) {
var action = payload.action;