From aaeb107e008bb7b51c9746f78c95641c6725d3d2 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/docs/flux-todo-list.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/docs/flux-todo-list.md b/docs/docs/flux-todo-list.md index f79bf7e760..561cdc4cf9 100644 --- a/docs/docs/flux-todo-list.md +++ b/docs/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;