Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlplusb committed Oct 30, 2019
1 parent 2c784da commit 2ce5f1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 2ce5f1a

Please sign in to comment.