@@ -1242,8 +1242,8 @@ interface ReadonlyArray<T> {
12421242 some ( predicate : ( value : T , index : number , array : readonly T [ ] ) => unknown , thisArg ?: any ) : boolean ;
12431243 /**
12441244 * Performs the specified action for each element in an array.
1245- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
1246- * @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.
1245+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
1246+ * @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.
12471247 */
12481248 forEach ( callbackfn : ( value : T , index : number , array : readonly T [ ] ) => void , thisArg ?: any ) : void ;
12491249 /**
@@ -1433,8 +1433,8 @@ interface Array<T> {
14331433 some ( predicate : ( value : T , index : number , array : T [ ] ) => unknown , thisArg ?: any ) : boolean ;
14341434 /**
14351435 * Performs the specified action for each element in an array.
1436- * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
1437- * @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.
1436+ * @param callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array.
1437+ * @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.
14381438 */
14391439 forEach ( callbackfn : ( value : T , index : number , array : T [ ] ) => void , thisArg ?: any ) : void ;
14401440 /**
@@ -1940,9 +1940,9 @@ interface Int8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
19401940
19411941 /**
19421942 * Performs the specified action for each element in an array.
1943- * @param callbackfn A function that accepts up to three arguments. forEach calls the
1943+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
19441944 * callbackfn function one time for each element in the array.
1945- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
1945+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
19461946 * If thisArg is omitted, undefined is used as the this value.
19471947 */
19481948 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -1951,7 +1951,7 @@ interface Int8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
19511951 * Returns the index of the first occurrence of a value in an array.
19521952 * @param searchElement The value to locate in the array.
19531953 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
1954- * search starts at index 0.
1954+ * search starts at index 0.
19551955 */
19561956 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
19571957
@@ -2221,9 +2221,9 @@ interface Uint8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
22212221
22222222 /**
22232223 * Performs the specified action for each element in an array.
2224- * @param callbackfn A function that accepts up to three arguments. forEach calls the
2224+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
22252225 * callbackfn function one time for each element in the array.
2226- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
2226+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
22272227 * If thisArg is omitted, undefined is used as the this value.
22282228 */
22292229 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -2232,7 +2232,7 @@ interface Uint8Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
22322232 * Returns the index of the first occurrence of a value in an array.
22332233 * @param searchElement The value to locate in the array.
22342234 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
2235- * search starts at index 0.
2235+ * search starts at index 0.
22362236 */
22372237 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
22382238
@@ -2502,9 +2502,9 @@ interface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike = ArrayBufferLi
25022502
25032503 /**
25042504 * Performs the specified action for each element in an array.
2505- * @param callbackfn A function that accepts up to three arguments. forEach calls the
2505+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
25062506 * callbackfn function one time for each element in the array.
2507- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
2507+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
25082508 * If thisArg is omitted, undefined is used as the this value.
25092509 */
25102510 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -2513,7 +2513,7 @@ interface Uint8ClampedArray<TArrayBuffer extends ArrayBufferLike = ArrayBufferLi
25132513 * Returns the index of the first occurrence of a value in an array.
25142514 * @param searchElement The value to locate in the array.
25152515 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
2516- * search starts at index 0.
2516+ * search starts at index 0.
25172517 */
25182518 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
25192519
@@ -2783,17 +2783,17 @@ interface Int16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
27832783
27842784 /**
27852785 * Performs the specified action for each element in an array.
2786- * @param callbackfn A function that accepts up to three arguments. forEach calls the
2786+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
27872787 * callbackfn function one time for each element in the array.
2788- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
2788+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
27892789 * If thisArg is omitted, undefined is used as the this value.
27902790 */
27912791 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
27922792 /**
27932793 * Returns the index of the first occurrence of a value in an array.
27942794 * @param searchElement The value to locate in the array.
27952795 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
2796- * search starts at index 0.
2796+ * search starts at index 0.
27972797 */
27982798 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
27992799
@@ -3063,9 +3063,9 @@ interface Uint16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
30633063
30643064 /**
30653065 * Performs the specified action for each element in an array.
3066- * @param callbackfn A function that accepts up to three arguments. forEach calls the
3066+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
30673067 * callbackfn function one time for each element in the array.
3068- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
3068+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
30693069 * If thisArg is omitted, undefined is used as the this value.
30703070 */
30713071 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -3074,7 +3074,7 @@ interface Uint16Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
30743074 * Returns the index of the first occurrence of a value in an array.
30753075 * @param searchElement The value to locate in the array.
30763076 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
3077- * search starts at index 0.
3077+ * search starts at index 0.
30783078 */
30793079 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
30803080
@@ -3343,9 +3343,9 @@ interface Int32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
33433343
33443344 /**
33453345 * Performs the specified action for each element in an array.
3346- * @param callbackfn A function that accepts up to three arguments. forEach calls the
3346+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
33473347 * callbackfn function one time for each element in the array.
3348- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
3348+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
33493349 * If thisArg is omitted, undefined is used as the this value.
33503350 */
33513351 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -3354,7 +3354,7 @@ interface Int32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
33543354 * Returns the index of the first occurrence of a value in an array.
33553355 * @param searchElement The value to locate in the array.
33563356 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
3357- * search starts at index 0.
3357+ * search starts at index 0.
33583358 */
33593359 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
33603360
@@ -3624,17 +3624,17 @@ interface Uint32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
36243624
36253625 /**
36263626 * Performs the specified action for each element in an array.
3627- * @param callbackfn A function that accepts up to three arguments. forEach calls the
3627+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
36283628 * callbackfn function one time for each element in the array.
3629- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
3629+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
36303630 * If thisArg is omitted, undefined is used as the this value.
36313631 */
36323632 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
36333633 /**
36343634 * Returns the index of the first occurrence of a value in an array.
36353635 * @param searchElement The value to locate in the array.
36363636 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
3637- * search starts at index 0.
3637+ * search starts at index 0.
36383638 */
36393639 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
36403640
@@ -3904,9 +3904,9 @@ interface Float32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
39043904
39053905 /**
39063906 * Performs the specified action for each element in an array.
3907- * @param callbackfn A function that accepts up to three arguments. forEach calls the
3907+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
39083908 * callbackfn function one time for each element in the array.
3909- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
3909+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
39103910 * If thisArg is omitted, undefined is used as the this value.
39113911 */
39123912 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -3915,7 +3915,7 @@ interface Float32Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
39153915 * Returns the index of the first occurrence of a value in an array.
39163916 * @param searchElement The value to locate in the array.
39173917 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
3918- * search starts at index 0.
3918+ * search starts at index 0.
39193919 */
39203920 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
39213921
@@ -4185,9 +4185,9 @@ interface Float64Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
41854185
41864186 /**
41874187 * Performs the specified action for each element in an array.
4188- * @param callbackfn A function that accepts up to three arguments. forEach calls the
4188+ * @param callbackfn A function that accepts up to three arguments. forEach calls the
41894189 * callbackfn function one time for each element in the array.
4190- * @param thisArg An object to which the this keyword can refer in the callbackfn function.
4190+ * @param thisArg An object to which the this keyword can refer in the callbackfn function.
41914191 * If thisArg is omitted, undefined is used as the this value.
41924192 */
41934193 forEach ( callbackfn : ( value : number , index : number , array : this) => void , thisArg ?: any ) : void ;
@@ -4196,7 +4196,7 @@ interface Float64Array<TArrayBuffer extends ArrayBufferLike = ArrayBufferLike> {
41964196 * Returns the index of the first occurrence of a value in an array.
41974197 * @param searchElement The value to locate in the array.
41984198 * @param fromIndex The array index at which to begin the search. If fromIndex is omitted, the
4199- * search starts at index 0.
4199+ * search starts at index 0.
42004200 */
42014201 indexOf ( searchElement : number , fromIndex ?: number ) : number ;
42024202
0 commit comments