Skip to content

Commit fd730fd

Browse files
authored
Fix grammar (nushell#1821)
1 parent 932a14b commit fd730fd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

book/navigating_structured_data.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ Given Nushell's strong support for structured data, some of the more common task
2424

2525
For the examples and descriptions below, keep in mind several definitions regarding structured data:
2626

27-
- **_List:_** Lists contain a series of zero or more values of any type. A list with zero values is known as an "empty list."
28-
- **_Record:_** Records contain zero or more pairs of named keys and their corresponding value. The data in a record's value can also be of any type. A record with zero key-value pairs is known as an "empty record."
27+
- **_List:_** Lists contain a series of zero or more values of any type. A list with zero values is known as an "empty list"
28+
- **_Record:_** Records contain zero or more pairs of named keys and their corresponding value. The data in a record's value can also be of any type. A record with zero key-value pairs is known as an "empty record"
2929
- **_Nested Data:_** The values contained in a list, record, or table can be either of a basic type or structured data themselves. This means that data can be nested multiple levels and in multiple forms:
3030
- List values can contain tables, records, and even other lists
3131
- **_Table:_** Tables are a list of records
@@ -237,7 +237,7 @@ Notice that:
237237
::: tip
238238
The row indices of the table resulting from `select` are not the same as that of the original. The new table has its own, 0-based index.
239239

240-
To obtain the original index, you can using the [`enumerate`](/commands/docs/enumerate.md) command. For example:
240+
To obtain the original index, you can use the [`enumerate`](/commands/docs/enumerate.md) command. For example:
241241

242242
```nu
243243
$data | enumerate | select 1

0 commit comments

Comments
 (0)