From 9fe36e591bef821198ad2d411a4eba24abb55d6b Mon Sep 17 00:00:00 2001 From: fisherwebdev Date: Fri, 22 Aug 2014 09:50:05 -0700 Subject: [PATCH] [docs] remove redundant paragraph --- docs/docs/flux-todo-list.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/docs/flux-todo-list.md b/docs/docs/flux-todo-list.md index bd68fc4290..0bdf3b7e70 100644 --- a/docs/docs/flux-todo-list.md +++ b/docs/docs/flux-todo-list.md @@ -142,8 +142,6 @@ class Dispatcher { } ``` -We use register() to register a store's callback with the dispatcher, and dispatch() to invoke all of callbacks we previously registered. A data payload (the action) is the sole argument provided to the callback. - Now we are all set to create a dispatcher that is more specific to our app, which we'll call AppDispatcher. ```javascript