Skip to content

Commit e4d2892

Browse files
update the to a
1 parent 5a02a18 commit e4d2892

File tree

1 file changed

+1
-1
lines changed
  • packages/wrangler/src/type-generation

1 file changed

+1
-1
lines changed

packages/wrangler/src/type-generation/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -635,7 +635,7 @@ function collectAllVars(
635635
* `['false', true]` returns `(string|boolean)[]`,
636636
*
637637
* @param array the target array
638-
* @returns the string representing the types of such array
638+
* @returns a string representing the types of such array
639639
*/
640640
function typeofArray(array: unknown[]): string {
641641
const typesInArray = [...new Set(array.map((item) => typeof item))].sort();

0 commit comments

Comments
 (0)