diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index a187e3c04a0f3..1f52da0693f75 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -1237,7 +1237,7 @@ interface ReadonlyArray { * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array. * @param thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value. */ - forEach(callbackfn: (value: T, index: number, array: readonly T[]) => void, thisArg?: any): void; + forEach(callbackfn: (value: T, index: number, array: readonly T[]) => void, thisArg?: any): void; /** * Calls a defined callback function on each element of an array, and returns an array that contains the results. * @param callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array.