Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: grammatical error correction #7225

Merged
merged 1 commit into from
Jan 4, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Nested items can be created by separating the items with `.` (dot) in the name.

### Arrays

Arrays, either top level or nested are created by specifying the zero-based index in the name. For example `person.pets.0` would be converted to `{ person: { pets: [ 'cat' ] } }`.
Arrays, either top-level or nested are created by specifying the zero-based index in the name. For example `person.pets.0` would be converted to `{ person: { pets: [ 'cat' ] } }`.

### Example

Expand Down Expand Up @@ -52,7 +52,7 @@ The key to creating a complex form is in the naming of the inputs. Below would b

#### Output object

The after submitting the form the data would be parsed in an object like this:
After submitting the form the data would be parsed in an object like this:
```json
{
"person": [
Expand Down
Loading