From 2c0d51ae826ddf4c64f0380485ba59fa2128f6d3 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Sat, 12 Sep 2015 16:53:58 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 6f90a5d7..01791d4c 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ Then, add `devTools` to your store enhancers, and create your store: ```js const finalCreateStore = compose( // Enables your middleware: - applyMiddleware(thunk), + applyMiddleware(m1, m2, m3), // any Redux middleware, e.g. redux-thunk // Provides support for DevTools: devTools(), // Lets you write ?debug_session= in address bar to persist debug sessions