Skip to content

Commit c31bff7

Browse files
docs: fixes misc grammar and spelling errors (#10996)
Fixed various spelling/grammatical errors found when reading the docs.
1 parent 5d19958 commit c31bff7

17 files changed

+20
-21
lines changed

docs/fields/blocks.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ desc: The Blocks Field is a great layout build and can be used to construct any
66
keywords: blocks, fields, config, configuration, documentation, Content Management System, cms, headless, javascript, node, react, nextjs
77
---
88

9-
The Blocks Field is **incredibly powerful** storing an array of objects based on the fields that your define, where each item in the array is a "block" with its own unique schema.
9+
The Blocks Field is **incredibly powerful**, storing an array of objects based on the fields that you define, where each item in the array is a "block" with its own unique schema.
1010

1111
Blocks are a great way to create a flexible content model that can be used to build a wide variety of content types, including:
1212

@@ -64,7 +64,7 @@ _* An asterisk denotes that a property is required._
6464

6565
## Admin Options
6666

67-
The customize the appearance and behavior of the Blocks Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
67+
To customize the appearance and behavior of the Blocks Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
6868

6969
```ts
7070
import type { Field } from 'payload'

docs/fields/code.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ _* An asterisk denotes that a property is required._
5454

5555
## Admin Options
5656

57-
The customize the appearance and behavior of the Code Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
57+
To customize the appearance and behavior of the Code Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
5858

5959
```ts
6060
import type { Field } from 'payload'

docs/fields/collapsible.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ _* An asterisk denotes that a property is required._
4444

4545
## Admin Options
4646

47-
The customize the appearance and behavior of the Collapsible Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
47+
To customize the appearance and behavior of the Collapsible Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
4848

4949
```ts
5050
import type { Field } from 'payload'

docs/fields/date.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ _* An asterisk denotes that a property is required._
5151

5252
## Admin Options
5353

54-
The customize the appearance and behavior of the Date Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
54+
To customize the appearance and behavior of the Date Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
5555

5656
```ts
5757
import type { Field } from 'payload'

docs/fields/email.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ _* An asterisk denotes that a property is required._
5151

5252
## Admin Options
5353

54-
The customize the appearance and behavior of the Email Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
54+
To customize the appearance and behavior of the Email Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
5555

5656
```ts
5757
import type { Field } from 'payload'

docs/fields/group.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ _* An asterisk denotes that a property is required._
5555

5656
## Admin Options
5757

58-
The customize the appearance and behavior of the Group Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
58+
To customize the appearance and behavior of the Group Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
5959

6060
```ts
6161
import type { Field } from 'payload'

docs/fields/json.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ _* An asterisk denotes that a property is required._
5353

5454
## Admin Options
5555

56-
The customize the appearance and behavior of the JSON Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
56+
To customize the appearance and behavior of the JSON Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
5757

5858
```ts
5959
import type { Field } from 'payload'

docs/fields/number.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ _* An asterisk denotes that a property is required._
5656

5757
## Admin Options
5858

59-
The customize the appearance and behavior of the Number Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
59+
To customize the appearance and behavior of the Number Field in the [Admin Panel](../admin/overview), you can use the `admin` option:
6060

6161
```ts
6262
import type { Field } from 'payload'

docs/fields/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ There are three main categories of fields in Payload:
5757
- [Presentational Fields](#presentational-fields)
5858
- [Virtual Fields](#virtual-fields)
5959

60-
To begin writing fields, first determine which [Field Type](#field-types) best supports your application. Then to author your field accordingly using the [Field Options](#field-options) for your chosen field type.
60+
To begin writing fields, first determine which [Field Type](#field-types) best supports your application. Then author your field accordingly using the [Field Options](#field-options) for your chosen field type.
6161

6262
### Data Fields
6363

docs/fields/point.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ desc: The Point field type stores coordinates in the database. Learn how to use
66
keywords: point, geolocation, geospatial, geojson, 2dsphere, config, configuration, documentation, Content Management System, cms, headless, javascript, node, react, nextjs
77
---
88

9-
The Point Field saves a pair of coordinates in the database and assigns an index for location related queries. The data structure in the database matches the GeoJSON structure to represent point. The Payload APIs simplifies the object data to only the [longitude, latitude] location.
9+
The Point Field saves a pair of coordinates in the database and assigns an index for location related queries. The data structure in the database matches the GeoJSON structure to represent point. The Payload API simplifies the object data to only the [longitude, latitude] location.
1010

1111
<LightDarkImage
1212
srcLight="https://payloadcms.com/images/docs/fields/point.png"

0 commit comments

Comments
 (0)