From ccd966094361da7ab5f2ab714f695a8e06705095 Mon Sep 17 00:00:00 2001 From: Tristan Yang Date: Wed, 8 Oct 2025 10:55:41 +0800 Subject: [PATCH] Update headers.md colspan -> colSpan --- docs/guide/headers.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/headers.md b/docs/guide/headers.md index 98d887e242..0a04901a26 100644 --- a/docs/guide/headers.md +++ b/docs/guide/headers.md @@ -54,7 +54,7 @@ For simple headers with no advanced nested or grouped headers logic, the `header There are a few properties on `header` objects that are only useful if the header is part of a nested or grouped header structure. These properties include: -- `colspan`: The number of columns that the header should span. This is useful for rendering the `colSpan` attribute on the `` element. +- `colSpan`: The number of columns that the header should span. This is useful for rendering the `colSpan` attribute on the `` element. - `rowSpan`: The number of rows that the header should span. This is useful for rendering the `rowSpan` attribute on the `` element. (Currently not implemented in default TanStack Table) - `depth`: The header group "row index" that the header group belongs to. - `isPlaceholder`: A boolean flag that is true if the header is a placeholder header. Placeholder headers are used to fill in the gaps when a column is hidden or when a column is part of a group column.