From 3757b7008a8693921b02cd5be039f82d4717228e Mon Sep 17 00:00:00 2001 From: ShreyasAyyengar <65931801+ShreyasAyyengar@users.noreply.github.com> Date: Mon, 26 May 2025 12:57:16 +0800 Subject: [PATCH] fix: typo --- 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..31c09dd36c 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 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 your data. ```ts const columns: ColumnDef[] = [] //Pass User type as the generic TData type