Skip to content

Commit 15596f3

Browse files
luchn49lha
andauthored
docs: fix wording by replacing 'Table API API' with 'Table API' (#4758)
Co-authored-by: lha <[email protected]>
1 parent f0d16ae commit 15596f3

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

docs/api/features/column-ordering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ onColumnOrderChange?: OnChangeFn<ColumnOrderState>
2525
2626
If provided, this function will be called with an `updaterFn` when `state.columnOrder` changes. This overrides the default internal state management, so you will need to persist the state change either fully or partially outside of the table.
2727
28-
## Table API API
28+
## Table API
2929
3030
### `setColumnOrder`
3131

docs/api/features/column-pinning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ enablePinning?: boolean
5555
5656
Enables/disables pinning for the column.
5757
58-
## Table API API
58+
## Table API
5959
6060
### `setColumnPinning`
6161

docs/api/features/column-sizing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ onColumnSizingInfoChange?: OnChangeFn<ColumnSizingInfoState>
168168
169169
This optional function will be called when the columnSizingInfo state changes. If you provide this function, you will be responsible for maintaining its state yourself. You can pass this state back to the table via the `state.columnSizingInfo` table option.
170170
171-
## Table API API
171+
## Table API
172172
173173
### `setColumnSizing`
174174

docs/api/features/column-visibility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ enableHiding?: boolean
7777
7878
Enables/disables hiding of columns.
7979
80-
## Table API API
80+
## Table API
8181
8282
### `getVisibleFlatColumns`
8383

docs/api/features/expanding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ If `true` expanded rows will be paginated along with the rest of the table (whic
117117
118118
If `false` expanded rows will not be considered for pagination (which means expanded rows will always render on their parents page. This also means more rows will be rendered than the set page size)
119119
120-
## Table API API
120+
## Table API
121121
122122
### `setExpanded`
123123

docs/api/features/filters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ getColumnCanGlobalFilter?: (column: Column<TData>) => boolean
463463
If provided, this function will be called with the column and should return `true` or `false` to indicate whether this column should be used for global filtering.
464464
This is useful if the column can contain data that is not `string` or `number` (i.e. `undefined`).
465465

466-
## Table API API
466+
## Table API
467467

468468
### `setColumnFilters`
469469

docs/api/features/grouping.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ groupedColumnMode?: false | 'reorder' | 'remove' // default: `reorder`
274274

275275
Grouping columns are automatically reordered by default to the start of the columns list. If you would rather remove them or leave them as-is, set the appropriate mode here.
276276

277-
## Table API API
277+
## Table API
278278

279279
### `setGrouping`
280280

docs/api/features/pagination.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Returns the row model after pagination has taken place, but no further.
6868
6969
Pagination columns are automatically reordered by default to the start of the columns list. If you would rather remove them or leave them as-is, set the appropriate mode here.
7070
71-
## Table API API
71+
## Table API
7272
7373
### `setPagination`
7474

docs/api/features/sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ isMultiSortEvent?: (e: unknown) => boolean
336336
337337
Pass a custom function that will be used to determine if a multi-sort event should be triggered. It is passed the event from the sort toggle handler and should return `true` if the event should trigger a multi-sort.
338338
339-
## Table API API
339+
## Table API
340340
341341
### `setSorting`
342342

0 commit comments

Comments
 (0)