From d5cf84255e2d2a12242baee5dcfd496f723dfb69 Mon Sep 17 00:00:00 2001 From: Timo Clasen Date: Thu, 1 Aug 2024 23:29:38 +0200 Subject: [PATCH] Add missing word in XState Store README (#5016) --- packages/xstate-store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/xstate-store/README.md b/packages/xstate-store/README.md index 0b7c19165c..c9f2c0335a 100644 --- a/packages/xstate-store/README.md +++ b/packages/xstate-store/README.md @@ -76,7 +76,7 @@ function DonutCounter() { ## Usage with Immer -XState Store makes it really to integrate with immutable update libraries like [Immer](https://github.com/immerjs/immer) or [Mutative](https://github.com/unadlib/mutative). Pass the `produce` function into `createStoreWithProducer(producer, …)`, and update `context` in transition functions using the convenient pseudo-mutative API: +XState Store makes it really easy to integrate with immutable update libraries like [Immer](https://github.com/immerjs/immer) or [Mutative](https://github.com/unadlib/mutative). Pass the `produce` function into `createStoreWithProducer(producer, …)`, and update `context` in transition functions using the convenient pseudo-mutative API: ```ts import { createStoreWithProducer } from '@xstate/store';