From 15eaeb7aad17248270db90e5ac7b11ddac9b8e20 Mon Sep 17 00:00:00 2001 From: Minsup Lee Date: Mon, 11 Nov 2024 00:42:32 +0900 Subject: [PATCH] chore(docs): fix typo (#2847) --- docs/guides/testing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guides/testing.md b/docs/guides/testing.md index 9fee34430f..61b3008c85 100644 --- a/docs/guides/testing.md +++ b/docs/guides/testing.md @@ -293,7 +293,7 @@ In the next examples we are going to use `useCounterStore` > **Note**: all of these examples are written using TypeScript. ```ts -// stores/counter-store-creator.ts +// shared/counter-store-creator.ts import { type StateCreator } from 'zustand' export type CounterStore = { @@ -308,7 +308,7 @@ export const counterStoreCreator: StateCreator = (set) => ({ ``` ```ts -// stores/user-counter-store.ts +// stores/use-counter-store.ts import { create } from 'zustand' import {