From 58f79914a0a3fb6d5601c6be0d97b33fcc4d0762 Mon Sep 17 00:00:00 2001 From: Patrick Naughton Date: Thu, 9 May 2024 14:40:13 -0700 Subject: [PATCH] docs: Update tables.md (#5534) broken link --- docs/guide/tables.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/guide/tables.md b/docs/guide/tables.md index b74c09f69d..0e83e5a106 100644 --- a/docs/guide/tables.md +++ b/docs/guide/tables.md @@ -22,7 +22,7 @@ Define your data as an array of objects with a stable reference. `data` can come #### Defining Columns -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. +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. ```ts const columns: ColumnDef[] = [] //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](../ ### Table Row Models -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). +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).