diff --git a/apps/www/.vitepress/theme/utils/codeeditor.ts b/apps/www/.vitepress/theme/utils/codeeditor.ts index 864146a6..02239879 100644 --- a/apps/www/.vitepress/theme/utils/codeeditor.ts +++ b/apps/www/.vitepress/theme/utils/codeeditor.ts @@ -123,7 +123,7 @@ function constructFiles(componentName: string, style: Style, sources: Record i !== 'utils') const files = { diff --git a/apps/www/src/content/docs/components/form.md b/apps/www/src/content/docs/components/form.md index 52640f3d..6c0d0f42 100644 --- a/apps/www/src/content/docs/components/form.md +++ b/apps/www/src/content/docs/components/form.md @@ -23,7 +23,7 @@ The `
` component is a wrapper around the `vee-validate` library. It prov - Composable components for building forms. - A `` component for building controlled form fields. - Form validation using `zod`. -- Applies the correct `aria` attributes to form fields based on states, handle unqiue IDs +- Applies the correct `aria` attributes to form fields based on states, handle unique IDs - Built to work with all Radix Vue components. - Bring your own schema library. We use `zod` but you can use any other supported schema validation you want, like [`yup`](https://github.com/jquense/yup) or [`valibot`](https://valibot.dev/). - **You have full control over the markup and styling.** diff --git a/apps/www/src/content/docs/contribution.md b/apps/www/src/content/docs/contribution.md index 1ca556a2..14fcdca3 100644 --- a/apps/www/src/content/docs/contribution.md +++ b/apps/www/src/content/docs/contribution.md @@ -176,7 +176,7 @@ To do so, we have a helper function named [`useForwardPropsEmits`](https://www.r To be more clear, the function `useForwardPropsEmits` takes in props and an optional emit function, and returns a computed object that combines the parsed props and emits as props. -Here's an example from `Accordian` root component. +Here's an example from `Accordion` root component. ```vue