Skip to content

Commit 58f7991

Browse files
authoredMay 9, 2024··
docs: Update tables.md (#5534)
broken link
1 parent eae4d0f commit 58f7991

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎docs/guide/tables.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Define your data as an array of objects with a stable reference. `data` can come
2222

2323
#### Defining Columns
2424

25-
Column definitions are covered in detail in the next section in the [Column Def Guide](../column-defs). We'll note here, however, that when you define the type of your columns, you should use the same `TData` type that you used for you data.
25+
Column definitions are covered in detail in the previous section in the [Column Def Guide](../column-defs). We'll note here, however, that when you define the type of your columns, you should use the same `TData` type that you used for you data.
2626

2727
```ts
2828
const columns: ColumnDef<User>[] = [] //Pass User type as the generic TData type
@@ -79,4 +79,4 @@ For example, you can find the core table instance API docs here: [Table API](../
7979

8080
### Table Row Models
8181

82-
There is a special set of table instance APIs for reading rows out of the table instance called row models. TanStack Table has advanced features where the rows that are generated may be very different than the array of `data` that you originally passed in. To learn more about the different row models that you can pass in as a table option, see the [Row Models Guide](../guide/row-models).
82+
There is a special set of table instance APIs for reading rows out of the table instance called row models. TanStack Table has advanced features where the rows that are generated may be very different than the array of `data` that you originally passed in. To learn more about the different row models that you can pass in as a table option, see the [Row Models Guide](../row-models).

0 commit comments

Comments
 (0)
Please sign in to comment.