From 173c1641423d6f59c460f191f19549fb43f894b9 Mon Sep 17 00:00:00 2001 From: hijingsong Date: Sat, 11 Apr 2026 15:43:12 +0000 Subject: [PATCH] fix(lib): correct typo paramater -> parameter in es5.d.ts --- src/lib/es5.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index ced21a6d72af1..7b8f64c87c955 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -1379,7 +1379,7 @@ interface Array { * Removes elements from an array and, if necessary, inserts new elements in their place, returning the deleted elements. * @param start The zero-based location in the array from which to start removing elements. * @param deleteCount The number of elements to remove. Omitting this argument will remove all elements from the start - * paramater location to end of the array. If value of this argument is either a negative number, zero, undefined, or a type + * parameter location to end of the array. If value of this argument is either a negative number, zero, undefined, or a type * that cannot be converted to an integer, the function will evaluate the argument as zero and not remove any elements. * @returns An array containing the elements that were deleted. */