From 5ffdf6ba84ad0c312a9b0912f73b56ed22534708 Mon Sep 17 00:00:00 2001 From: Andrew Hulterstrom <55113250+ahulterstrom@users.noreply.github.com> Date: Thu, 14 Dec 2023 17:02:42 -0700 Subject: [PATCH] docs: minor typo fix in flux-inspired-practice.md --- docs/guides/flux-inspired-practice.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).