@@ -63,14 +63,14 @@ interface Int8Array extends ArrayBufferView {
63
63
64
64
/**
65
65
* Sets a value or an array of values.
66
- * @param A typed or untyped array of values to set.
66
+ * @param array A typed or untyped array of values to set.
67
67
* @param offset The index in the current array at which the values are to be written.
68
68
*/
69
69
set ( array : Int8Array , offset ?: number ) : void ;
70
70
71
71
/**
72
72
* Sets a value or an array of values.
73
- * @param A typed or untyped array of values to set.
73
+ * @param array A typed or untyped array of values to set.
74
74
* @param offset The index in the current array at which the values are to be written.
75
75
*/
76
76
set ( array : number [ ] , offset ?: number ) : void ;
@@ -121,14 +121,14 @@ interface Uint8Array extends ArrayBufferView {
121
121
122
122
/**
123
123
* Sets a value or an array of values.
124
- * @param A typed or untyped array of values to set.
124
+ * @param array A typed or untyped array of values to set.
125
125
* @param offset The index in the current array at which the values are to be written.
126
126
*/
127
127
set ( array : Uint8Array , offset ?: number ) : void ;
128
128
129
129
/**
130
130
* Sets a value or an array of values.
131
- * @param A typed or untyped array of values to set.
131
+ * @param array A typed or untyped array of values to set.
132
132
* @param offset The index in the current array at which the values are to be written.
133
133
*/
134
134
set ( array : number [ ] , offset ?: number ) : void ;
@@ -179,14 +179,14 @@ interface Int16Array extends ArrayBufferView {
179
179
180
180
/**
181
181
* Sets a value or an array of values.
182
- * @param A typed or untyped array of values to set.
182
+ * @param array A typed or untyped array of values to set.
183
183
* @param offset The index in the current array at which the values are to be written.
184
184
*/
185
185
set ( array : Int16Array , offset ?: number ) : void ;
186
186
187
187
/**
188
188
* Sets a value or an array of values.
189
- * @param A typed or untyped array of values to set.
189
+ * @param array A typed or untyped array of values to set.
190
190
* @param offset The index in the current array at which the values are to be written.
191
191
*/
192
192
set ( array : number [ ] , offset ?: number ) : void ;
@@ -237,14 +237,14 @@ interface Uint16Array extends ArrayBufferView {
237
237
238
238
/**
239
239
* Sets a value or an array of values.
240
- * @param A typed or untyped array of values to set.
240
+ * @param array A typed or untyped array of values to set.
241
241
* @param offset The index in the current array at which the values are to be written.
242
242
*/
243
243
set ( array : Uint16Array , offset ?: number ) : void ;
244
244
245
245
/**
246
246
* Sets a value or an array of values.
247
- * @param A typed or untyped array of values to set.
247
+ * @param array A typed or untyped array of values to set.
248
248
* @param offset The index in the current array at which the values are to be written.
249
249
*/
250
250
set ( array : number [ ] , offset ?: number ) : void ;
@@ -295,14 +295,14 @@ interface Int32Array extends ArrayBufferView {
295
295
296
296
/**
297
297
* Sets a value or an array of values.
298
- * @param A typed or untyped array of values to set.
298
+ * @param array A typed or untyped array of values to set.
299
299
* @param offset The index in the current array at which the values are to be written.
300
300
*/
301
301
set ( array : Int32Array , offset ?: number ) : void ;
302
302
303
303
/**
304
304
* Sets a value or an array of values.
305
- * @param A typed or untyped array of values to set.
305
+ * @param array A typed or untyped array of values to set.
306
306
* @param offset The index in the current array at which the values are to be written.
307
307
*/
308
308
set ( array : number [ ] , offset ?: number ) : void ;
@@ -353,14 +353,14 @@ interface Uint32Array extends ArrayBufferView {
353
353
354
354
/**
355
355
* Sets a value or an array of values.
356
- * @param A typed or untyped array of values to set.
356
+ * @param array A typed or untyped array of values to set.
357
357
* @param offset The index in the current array at which the values are to be written.
358
358
*/
359
359
set ( array : Uint32Array , offset ?: number ) : void ;
360
360
361
361
/**
362
362
* Sets a value or an array of values.
363
- * @param A typed or untyped array of values to set.
363
+ * @param array A typed or untyped array of values to set.
364
364
* @param offset The index in the current array at which the values are to be written.
365
365
*/
366
366
set ( array : number [ ] , offset ?: number ) : void ;
@@ -411,14 +411,14 @@ interface Float32Array extends ArrayBufferView {
411
411
412
412
/**
413
413
* Sets a value or an array of values.
414
- * @param A typed or untyped array of values to set.
414
+ * @param array A typed or untyped array of values to set.
415
415
* @param offset The index in the current array at which the values are to be written.
416
416
*/
417
417
set ( array : Float32Array , offset ?: number ) : void ;
418
418
419
419
/**
420
420
* Sets a value or an array of values.
421
- * @param A typed or untyped array of values to set.
421
+ * @param array A typed or untyped array of values to set.
422
422
* @param offset The index in the current array at which the values are to be written.
423
423
*/
424
424
set ( array : number [ ] , offset ?: number ) : void ;
@@ -469,14 +469,14 @@ interface Float64Array extends ArrayBufferView {
469
469
470
470
/**
471
471
* Sets a value or an array of values.
472
- * @param A typed or untyped array of values to set.
472
+ * @param array A typed or untyped array of values to set.
473
473
* @param offset The index in the current array at which the values are to be written.
474
474
*/
475
475
set ( array : Float64Array , offset ?: number ) : void ;
476
476
477
477
/**
478
478
* Sets a value or an array of values.
479
- * @param A typed or untyped array of values to set.
479
+ * @param array A typed or untyped array of values to set.
480
480
* @param offset The index in the current array at which the values are to be written.
481
481
*/
482
482
set ( array : number [ ] , offset ?: number ) : void ;
0 commit comments