diff --git a/docs/guides/flux-inspired-practice.md b/docs/guides/flux-inspired-practice.md index a2000b4b61..c00b86741c 100644 --- a/docs/guides/flux-inspired-practice.md +++ b/docs/guides/flux-inspired-practice.md @@ -74,4 +74,4 @@ import { redux } from 'zustand/middleware' const useReduxStore = create(redux(reducer, initialState)) ``` -Another way to update the store could be through functions wrapping the state functions. These could also handle side-effects of actions. For example, with HTTP-calls. To use Zustand in a none-reactive way, see [the readme](https://github.com/pmndrs/zustand#readingwriting-state-and-reacting-to-changes-outside-of-components). +Another way to update the store could be through functions wrapping the state functions. These could also handle side-effects of actions. For example, with HTTP-calls. To use Zustand in a non-reactive way, see [the readme](https://github.com/pmndrs/zustand#readingwriting-state-and-reacting-to-changes-outside-of-components).