From e7cab9f26b1217514c352d6bbb88c81dbb4569bf Mon Sep 17 00:00:00 2001 From: Rohit Dalal <32014253+dalalRohit@users.noreply.github.com> Date: Tue, 30 Jul 2024 16:15:47 +0530 Subject: [PATCH] fix typo on tables.md fix typo on "Creating a Table Instance" section on https://tanstack.com/table/latest/docs/guide/tables --- 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 79c0ec7f62..2ee721f6e9 100644 --- a/docs/guide/tables.md +++ b/docs/guide/tables.md @@ -18,7 +18,7 @@ To create a table instance, 3 `options` are required: `columns`, `data`, and a ` #### Defining Data -Define your data as an array of objects with a stable reference. `data` can come from anywhere like an API response or defined statically in your code, but it must have a stable reference to prevent infinite re-renders. If using TypeScript, the the type that you give your data will be used as a `TData` generic. See the [Data Guide](../data) for more info. +Define your data as an array of objects with a stable reference. `data` can come from anywhere like an API response or defined statically in your code, but it must have a stable reference to prevent infinite re-renders. If using TypeScript, the type that you give your data will be used as a `TData` generic. See the [Data Guide](../data) for more info. #### Defining Columns