From fc2f533023335b221aec9d4adf5da735defebb38 Mon Sep 17 00:00:00 2001 From: sadeghbarati Date: Sun, 28 Apr 2024 09:36:10 +0330 Subject: [PATCH] chore: typos --- apps/www/src/content/docs/components/form.md | 2 +- apps/www/src/content/docs/contribution.md | 4 ++-- apps/www/src/examples/forms/components/AppearanceForm.vue | 2 +- apps/www/src/examples/music/components/Menu.vue | 2 +- apps/www/src/lib/registry/default/example/Cards/Metric.vue | 2 +- apps/www/src/lib/registry/new-york/example/Cards/Metric.vue | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) 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