From a6e6c3b250d2a8f50dd8ff0034ba0defb4700db9 Mon Sep 17 00:00:00 2001 From: Joey Figaro Date: Thu, 16 May 2024 19:14:08 -0400 Subject: [PATCH] docs: you your typo (#5561) Small typo for column type definitions. --- 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 fae08cc87..9bb29f6c1 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 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. +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 your data. ```ts const columns: ColumnDef[] = [] //Pass User type as the generic TData type