Skip to content

Commit 140f0df

Browse files
committed
Fix typos and a handful of punctuation issues
1 parent 4ea039e commit 140f0df

11 files changed

+15
-15
lines changed

_install/astro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ label: "Vue Components"
4040
Astro does not let you use <code>FormKit</code> directly inside Astro files, so you should create a wrapper around your forms.
4141
::
4242

43-
Now you can add FormKit to your Astro Vue components, so that you can create a component inside the components folder:
43+
Now you can add FormKit to your Astro Vue components by creating a component inside the components folder:
4444

4545
```html
4646
<script setup>

_install/cli.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ At your terminal, run `npx formkit@latest create-app` to start your new project:
66
npx formkit@latest create-app
77
```
88

9-
`create-app` will ask you some questions about your project so it can determine what it needs to install and setup for you:
9+
`create-app` will ask you some questions about your project so it can determine what it needs to install and set up for you:
1010

1111
```sh
1212
✔ Please enter a name for the project › <your-project-name>

_install/config.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
To configure FormKit, create a FormKit config file in the root of your project and import it into your Vue App.
44

5-
If you would like to supply your own configuration, you can either extend `defaultConfig` by passing a [configuration object](/essentials/configuration#what-is-defaultconfig) to it, or replace with your own configuration object, which allows for improved tree-shaking (only include the rules and languages you need) and more fine-grained control:
5+
If you would like to supply your own configuration, you can either extend `defaultConfig` by passing a [configuration object](/essentials/configuration#what-is-defaultconfig) to it, or replace it with your own configuration object, which allows for improved tree-shaking (only include the rules and languages you need) and more fine-grained control:
66

77
::Callout
88
---

_install/nuxt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ export default defineNuxtConfig({
3131
})
3232
```
3333

34-
Though unstyled, FormKit is now registered using the default config and you can start using the `<FormKit>` component.
34+
Though unstyled, FormKit is now registered using the default config, and you can start using the `<FormKit>` component.

_install/pro-nuxt.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ export default defineFormKitConfig({
4242
type: "warning"
4343
label: "Legacy Genesis Theme"
4444
---
45-
If you are using the legacy Genesis CSS, theme then follow the instructions below.
45+
If you are using the legacy Genesis CSS theme, then follow the instructions below.
4646

47-
Note: All Tailwind themes from [themes.formkit.com](https://themes.formkit.com) ship with support for Pro Inputs so the instructions below are not required for Tailwind users.
47+
Note: All Tailwind themes from [themes.formkit.com](https://themes.formkit.com) ship with support for Pro Inputs, so the instructions below are not required for Tailwind users.
4848
::
4949

5050
If you are using the legacy Genesis CSS theme, you will need to install the accompanying Pro CSS as well:

_install/pro.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ label: "Legacy Genesis Theme"
4444
---
4545
If you are using the legacy Genesis CSS theme, then follow the instructions below.
4646

47-
Note: All Tailwind themes from [themes.formkit.com](https://themes.formkit.com) ship with support for Pro Inputs so the instructions below are not required for Tailwind users.
47+
Note: All Tailwind themes from [themes.formkit.com](https://themes.formkit.com) ship with support for Pro Inputs, so the instructions below are not required for Tailwind users.
4848
::
4949

5050
If you are using the legacy Genesis CSS theme, you will need to install the accompanying Pro CSS as well:

_install/styling-css.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ FormKit now ships much more configurable Tailwind themes available at [themes.fo
1010
Eventually the legacy Genesis CSS theme will be deprecated and no longer supported by new Pro inputs.
1111
::
1212

13-
FormKit ships a (legacy) CSS theme called `genesis` which can be added by installed from the `@formkit/themes` package.
13+
FormKit ships a (legacy) CSS theme called `genesis` which can be added by installing from the `@formkit/themes` package.
1414

1515
### CDN Usage
1616

@@ -39,7 +39,7 @@ import '@formkit/themes/genesis'
3939

4040
### Add required icons
4141

42-
By default the icons required by the `genesis` theme will be loaded from CDN when requested. If you prefer to include the icons directly in your bundle for increased perfomance, to avoid any pop-in, or to alleviate possible SSR issues then import the `genesisIcons` set from `@formkit/icons` and spread them into the `icons` property of your FormKit config.
42+
By default the icons required by the `genesis` theme will be loaded from CDN when requested. If you prefer to include the icons directly in your bundle for increased performance, to avoid any pop-in, or to alleviate possible SSR issues, then import the `genesisIcons` set from `@formkit/icons` and spread them into the `icons` property of your FormKit config.
4343

4444
```js
4545
import { genesisIcons } from '@formkit/icons'

_install/styling-tailwind.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### Adding icons
66

7-
By default, the icons required by FormKit will be loaded from CDN when requested. If you prefer to include the icons directly in your bundle for increased perfomance, to avoid any pop-in, or to alleviate possible SSR issues, then import the `genesisIcons` set from `@formkit/icons` and spread them into the `icons` property of your FormKit config:
7+
By default, the icons required by FormKit will be loaded from CDN when requested. If you prefer to include the icons directly in your bundle for increased performance, to avoid any pop-in, or to alleviate possible SSR issues, then import the `genesisIcons` set from `@formkit/icons` and spread them into the `icons` property of your FormKit config:
88

99
```sh
1010
npm install @formkit/icons

_install/styling-uno.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### For Tailwind
22

3-
FormKit ships with a Tailwind version of the Genesis theme. To use this pre-made Tailwind theme in your project import it from `@formkit/themes/tailwindcss/genesis` and add it to your `formkit.config.js`. You'll also want to include the neccessary `genesisIcons` import from `@formkit/icons`.
3+
FormKit ships with a Tailwind version of the Genesis theme. To use this pre-made Tailwind theme in your project, import it from `@formkit/themes/tailwindcss/genesis` and add it to your `formkit.config.js`. You'll also want to include the necessary `genesisIcons` import from `@formkit/icons`.
44

55
```js
66
// formkit.config.js
@@ -18,7 +18,7 @@ export default {
1818
}
1919
```
2020

21-
The `genesis` theme import is nice for brevity, but the Tailwind parser will need to be provided the path to the full theme file in your `node_modules` in order to know which classes are being used. Additionally you should add the `FormKitVariants` plugin to your `tailwind.config.js` in order to make use of helpful FormKit variants such as `formkit-invalid:` in your project.
21+
The `genesis` theme import is nice for brevity, but the Tailwind parser will need to be provided the path to the full theme file in your `node_modules` in order to know which classes are being used. Additionally, you should add the `FormKitVariants` plugin to your `tailwind.config.js` in order to make use of helpful FormKit variants such as `formkit-invalid:` in your project.
2222

2323
```js
2424
// tailwind.config.js

_install/styling-windi.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
### For Tailwind
22

3-
FormKit ships with a Tailwind version of the Genesis theme. To use this pre-made Tailwind theme in your project import it from `@formkit/themes/tailwindcss/genesis` and add it to your `formkit.config.js`. You'll also want to include the neccessary `genesisIcons` import from `@formkit/icons`.
3+
FormKit ships with a Tailwind version of the Genesis theme. To use this pre-made Tailwind theme in your project, import it from `@formkit/themes/tailwindcss/genesis` and add it to your `formkit.config.js`. You'll also want to include the necessary `genesisIcons` import from `@formkit/icons`.
44

55
```js
66
// formkit.config.js
@@ -18,7 +18,7 @@ export default {
1818
}
1919
```
2020

21-
The `genesis` theme import is nice for brevity, but the Tailwind parser will need to be provided the path to the full theme file in your `node_modules` in order to know which classes are being used. Additionally you should add the `FormKitVariants` plugin to your `tailwind.config.js` in order to make use of helpful FormKit variants such as `formkit-invalid:` in your project.
21+
The `genesis` theme import is nice for brevity, but the Tailwind parser will need to be provided the path to the full theme file in your `node_modules` in order to know which classes are being used. Additionally, you should add the `FormKitVariants` plugin to your `tailwind.config.js` in order to make use of helpful FormKit variants such as `formkit-invalid:` in your project.
2222

2323
```js
2424
// tailwind.config.js

_install/tailwind-install-instructions.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Alternatively, you can use the FormKit CLI to select a theme for your project. R
1919
npx formkit@latest theme
2020
```
2121

22-
This command will create a `formkit.theme.{ts|js}` file in the root of your project. To complete the setup you will need use the `rootClasses` from this theme file in your `formkit.config.{ts|js}`:
22+
This command will create a `formkit.theme.{ts|js}` file in the root of your project. To complete the setup you will need to use the `rootClasses` from this theme file in your `formkit.config.{ts|js}`:
2323

2424
```js
2525
// formkit.config.ts

0 commit comments

Comments
 (0)