diff --git a/documentation/overview.md b/documentation/overview.md index b7cd798a..f3ac0482 100644 --- a/documentation/overview.md +++ b/documentation/overview.md @@ -88,7 +88,7 @@ export type RemoveTable = ['RemoveTable', string]; export type RenameTable = ['RenameTable', string, string]; ``` -Data actions take a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values: +Data actions take a string `tableId` and a numeric `rowId` (or a list of them, for “bulk” actions) and a set of values: ``` export interface ColValues { [colId: string]: CellValue; }