From 2ce5f1afe2b80c7b2b9e2e7f0bb53882749b6bf4 Mon Sep 17 00:00:00 2001 From: Sean Matheson Date: Wed, 30 Oct 2019 12:13:46 +0000 Subject: [PATCH] Fix docs --- website/docs/docs/quick-start.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/docs/quick-start.md b/website/docs/docs/quick-start.md index 50829d27e..88e642a3f 100644 --- a/website/docs/docs/quick-start.md +++ b/website/docs/docs/quick-start.md @@ -96,7 +96,7 @@ const basketModel = { The [action](/docs/api/action.html) will receive the state which is local to it. -By default you need to mutate the state with the action, which we convert to an immutable update via [immer](https://github.com/immerjs/immer). If you prefer to return new immutable instances of your state, like a standard Redux reducer, you can set the `disableImmer` [configuration](/docs/api/store-config.html) of the [createStore](/docs/api/create-store.html). +By default you need to mutate the state with the action, which we convert to an immutable update via [immer](https://github.com/immerjs/immer). If you prefer you can instead return new immutable instances of your state, like a standard Redux reducer. ## Dispatching your actions