From d839fe70f6148f638012f1edcd7d6021f99cc56a Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot <> Date: Fri, 26 Apr 2024 07:42:46 +0000 Subject: [PATCH] Update API doc --- components/lib/datatable/DataTable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/lib/datatable/DataTable.d.ts b/components/lib/datatable/DataTable.d.ts index 02b4aa450..d1b640464 100755 --- a/components/lib/datatable/DataTable.d.ts +++ b/components/lib/datatable/DataTable.d.ts @@ -1071,7 +1071,7 @@ export interface DataTableProps { rowClass?: (data: any) => string | object | undefined; /** * A function that takes the row data as a parameter and returns the inline style object for the corresponding row. - * The function may also return an array of style objects which will be merged. + * The function may also return an array of style objects which will be merged. * The return value of this function is directly applied as a Vue.js style-binding on the table row. */ rowStyle?: (data: any) => object | object[] | undefined;