From 29ceb7761c32f8616b95c6b35c4ff8c8f347379d Mon Sep 17 00:00:00 2001 From: Michael Chan Date: Sun, 17 Aug 2014 19:37:10 -0700 Subject: [PATCH] docs(flux-todo-list): fix TodoStore syntax Add missing semicolon behind `TodoStore#addChangeListener' --- docs/flux-todo-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/flux-todo-list.md b/docs/flux-todo-list.md index f79bf7e7..561cdc4c 100644 --- a/docs/flux-todo-list.md +++ b/docs/flux-todo-list.md @@ -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;