Skip to content

Commit

Permalink
chore(docs): fix typo (#2847)
Browse files Browse the repository at this point in the history
  • Loading branch information
m1nsuplee authored Nov 10, 2024
1 parent 8b9c374 commit 15eaeb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/guides/testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand All @@ -308,7 +308,7 @@ export const counterStoreCreator: StateCreator<CounterStore> = (set) => ({
```

```ts
// stores/user-counter-store.ts
// stores/use-counter-store.ts
import { create } from 'zustand'

import {
Expand Down

0 comments on commit 15eaeb7

Please sign in to comment.