From 106ee6abf7554d127fc5680bc979cdadab00f08d Mon Sep 17 00:00:00 2001 From: Josh Duff Date: Sat, 30 Jan 2016 17:51:55 -0600 Subject: [PATCH] Adding enhancer to createStore signature --- docs/api/createStore.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/createStore.md b/docs/api/createStore.md index b2d3f5a2b4..3b31302443 100644 --- a/docs/api/createStore.md +++ b/docs/api/createStore.md @@ -1,4 +1,4 @@ -# `createStore(reducer, [initialState])` +# `createStore(reducer, [initialState], [enhancer])` Creates a Redux [store](Store.md) that holds the complete state tree of your app. There should only be a single store in your app.