diff --git a/COMPONENT_INDEX.md b/COMPONENT_INDEX.md
index 2af33f30..f0457bdd 100644
--- a/COMPONENT_INDEX.md
+++ b/COMPONENT_INDEX.md
@@ -995,7 +995,7 @@ export interface DataTableCell {
| batchSelection | let
| No | boolean
| false
| Set to `true` to enable batch selection |
| stickyHeader | let
| No | boolean
| false
| Set to `true` to enable a sticky header |
| useStaticWidth | let
| No | boolean
| false
| Set to `true` to use static width |
-| pageSize | let
| No | number
| 0
| Set to `number` to limit the output |
+| pageSize | let
| No | number
| 0
| Specify the number of items to display in a page |
| page | let
| No | number
| 0
| Set to `number` to set current page |
### Slots
diff --git a/docs/src/COMPONENT_API.json b/docs/src/COMPONENT_API.json
index ba63ece4..14e69a04 100644
--- a/docs/src/COMPONENT_API.json
+++ b/docs/src/COMPONENT_API.json
@@ -2367,7 +2367,7 @@
{
"name": "pageSize",
"kind": "let",
- "description": "Set to `number` to limit the output",
+ "description": "Specify the number of items to display in a page",
"type": "number",
"value": "0",
"isFunction": false,
diff --git a/types/DataTable/DataTable.svelte.d.ts b/types/DataTable/DataTable.svelte.d.ts
index f9bacb57..9c37a3a6 100644
--- a/types/DataTable/DataTable.svelte.d.ts
+++ b/types/DataTable/DataTable.svelte.d.ts
@@ -143,7 +143,7 @@ export interface DataTableProps
useStaticWidth?: boolean;
/**
- * Set to `number` to limit the output
+ * Specify the number of items to display in a page
* @default 0
*/
pageSize?: number;