@@ -1182,14 +1182,14 @@ interface Int8Array extends ArrayBufferView {
1182
1182
1183
1183
/**
1184
1184
* Sets a value or an array of values.
1185
- * @param A typed or untyped array of values to set.
1185
+ * @param array A typed or untyped array of values to set.
1186
1186
* @param offset The index in the current array at which the values are to be written.
1187
1187
*/
1188
1188
set(array: Int8Array, offset?: number): void;
1189
1189
1190
1190
/**
1191
1191
* Sets a value or an array of values.
1192
- * @param A typed or untyped array of values to set.
1192
+ * @param array A typed or untyped array of values to set.
1193
1193
* @param offset The index in the current array at which the values are to be written.
1194
1194
*/
1195
1195
set(array: number[], offset?: number): void;
@@ -1240,14 +1240,14 @@ interface Uint8Array extends ArrayBufferView {
1240
1240
1241
1241
/**
1242
1242
* Sets a value or an array of values.
1243
- * @param A typed or untyped array of values to set.
1243
+ * @param array A typed or untyped array of values to set.
1244
1244
* @param offset The index in the current array at which the values are to be written.
1245
1245
*/
1246
1246
set(array: Uint8Array, offset?: number): void;
1247
1247
1248
1248
/**
1249
1249
* Sets a value or an array of values.
1250
- * @param A typed or untyped array of values to set.
1250
+ * @param array A typed or untyped array of values to set.
1251
1251
* @param offset The index in the current array at which the values are to be written.
1252
1252
*/
1253
1253
set(array: number[], offset?: number): void;
@@ -1298,14 +1298,14 @@ interface Int16Array extends ArrayBufferView {
1298
1298
1299
1299
/**
1300
1300
* Sets a value or an array of values.
1301
- * @param A typed or untyped array of values to set.
1301
+ * @param array A typed or untyped array of values to set.
1302
1302
* @param offset The index in the current array at which the values are to be written.
1303
1303
*/
1304
1304
set(array: Int16Array, offset?: number): void;
1305
1305
1306
1306
/**
1307
1307
* Sets a value or an array of values.
1308
- * @param A typed or untyped array of values to set.
1308
+ * @param array A typed or untyped array of values to set.
1309
1309
* @param offset The index in the current array at which the values are to be written.
1310
1310
*/
1311
1311
set(array: number[], offset?: number): void;
@@ -1356,14 +1356,14 @@ interface Uint16Array extends ArrayBufferView {
1356
1356
1357
1357
/**
1358
1358
* Sets a value or an array of values.
1359
- * @param A typed or untyped array of values to set.
1359
+ * @param array A typed or untyped array of values to set.
1360
1360
* @param offset The index in the current array at which the values are to be written.
1361
1361
*/
1362
1362
set(array: Uint16Array, offset?: number): void;
1363
1363
1364
1364
/**
1365
1365
* Sets a value or an array of values.
1366
- * @param A typed or untyped array of values to set.
1366
+ * @param array A typed or untyped array of values to set.
1367
1367
* @param offset The index in the current array at which the values are to be written.
1368
1368
*/
1369
1369
set(array: number[], offset?: number): void;
@@ -1414,14 +1414,14 @@ interface Int32Array extends ArrayBufferView {
1414
1414
1415
1415
/**
1416
1416
* Sets a value or an array of values.
1417
- * @param A typed or untyped array of values to set.
1417
+ * @param array A typed or untyped array of values to set.
1418
1418
* @param offset The index in the current array at which the values are to be written.
1419
1419
*/
1420
1420
set(array: Int32Array, offset?: number): void;
1421
1421
1422
1422
/**
1423
1423
* Sets a value or an array of values.
1424
- * @param A typed or untyped array of values to set.
1424
+ * @param array A typed or untyped array of values to set.
1425
1425
* @param offset The index in the current array at which the values are to be written.
1426
1426
*/
1427
1427
set(array: number[], offset?: number): void;
@@ -1472,14 +1472,14 @@ interface Uint32Array extends ArrayBufferView {
1472
1472
1473
1473
/**
1474
1474
* Sets a value or an array of values.
1475
- * @param A typed or untyped array of values to set.
1475
+ * @param array A typed or untyped array of values to set.
1476
1476
* @param offset The index in the current array at which the values are to be written.
1477
1477
*/
1478
1478
set(array: Uint32Array, offset?: number): void;
1479
1479
1480
1480
/**
1481
1481
* Sets a value or an array of values.
1482
- * @param A typed or untyped array of values to set.
1482
+ * @param array A typed or untyped array of values to set.
1483
1483
* @param offset The index in the current array at which the values are to be written.
1484
1484
*/
1485
1485
set(array: number[], offset?: number): void;
@@ -1530,14 +1530,14 @@ interface Float32Array extends ArrayBufferView {
1530
1530
1531
1531
/**
1532
1532
* Sets a value or an array of values.
1533
- * @param A typed or untyped array of values to set.
1533
+ * @param array A typed or untyped array of values to set.
1534
1534
* @param offset The index in the current array at which the values are to be written.
1535
1535
*/
1536
1536
set(array: Float32Array, offset?: number): void;
1537
1537
1538
1538
/**
1539
1539
* Sets a value or an array of values.
1540
- * @param A typed or untyped array of values to set.
1540
+ * @param array A typed or untyped array of values to set.
1541
1541
* @param offset The index in the current array at which the values are to be written.
1542
1542
*/
1543
1543
set(array: number[], offset?: number): void;
@@ -1588,14 +1588,14 @@ interface Float64Array extends ArrayBufferView {
1588
1588
1589
1589
/**
1590
1590
* Sets a value or an array of values.
1591
- * @param A typed or untyped array of values to set.
1591
+ * @param array A typed or untyped array of values to set.
1592
1592
* @param offset The index in the current array at which the values are to be written.
1593
1593
*/
1594
1594
set(array: Float64Array, offset?: number): void;
1595
1595
1596
1596
/**
1597
1597
* Sets a value or an array of values.
1598
- * @param A typed or untyped array of values to set.
1598
+ * @param array A typed or untyped array of values to set.
1599
1599
* @param offset The index in the current array at which the values are to be written.
1600
1600
*/
1601
1601
set(array: number[], offset?: number): void;
0 commit comments