Skip to content

Commit 8770922

Browse files
authored
docs: fix incorrect default value in chunkArray JSDoc (#1038)
1 parent 0e20c68 commit 8770922

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/website/src/utils/chunkArray.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* This function takes an array and divides it into smaller arrays,
33
* or "chunks", each containing a specified number of elements.
44
* @param array The array to be split into chunks.
5-
* @param size The size of each chunk. The default size is 10.
5+
* @param size The size of each chunk. The default size is 15.
66
* @returns An array containing smaller subarrays (chunks), each with a length defined by the size.
77
*/
88
export function chunkArray(array: any[], size = 15): any[] {

0 commit comments

Comments
 (0)