diff --git a/docs/content/3.docs/1.usage/2.state.md b/docs/content/3.docs/1.usage/2.state.md index 6a21ab774b..4d213fb5cb 100644 --- a/docs/content/3.docs/1.usage/2.state.md +++ b/docs/content/3.docs/1.usage/2.state.md @@ -29,7 +29,7 @@ const state = useState(key: string, init?: () => T): Ref ## Shared State -Using [auto imported composables](/docs/directory-structure/composables) we can define global typesafe states. +Using [auto-imported composables](/docs/directory-structure/composables) we can define global type-safe states. ```ts [composables/states.ts] export const useColor = () => useState('color', () => 'pink')