From 1e543841028b6e9944bde41da325e3dd2a8d0c6f Mon Sep 17 00:00:00 2001 From: Joshua Date: Tue, 16 Sep 2025 15:04:41 +0200 Subject: [PATCH] fix: next section is actually previous section --- docs/guide/tables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/tables.md b/docs/guide/tables.md index b0153464b7..b3aa23929f 100644 --- a/docs/guide/tables.md +++ b/docs/guide/tables.md @@ -71,7 +71,7 @@ const data = ref([]) #### Defining Columns -Column definitions are covered in detail in the next section in the [Column Def Guide](../column-defs.md). 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.md). 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