Skip to content

Commit b643163

Browse files
committed
fix documentation for {Ui,I}nt{8,16,32}Array
1 parent beb2725 commit b643163

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/lib/extensions.d.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -63,14 +63,14 @@ interface Int8Array extends ArrayBufferView {
6363

6464
/**
6565
* 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.
6767
* @param offset The index in the current array at which the values are to be written.
6868
*/
6969
set(array: Int8Array, offset?: number): void;
7070

7171
/**
7272
* 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.
7474
* @param offset The index in the current array at which the values are to be written.
7575
*/
7676
set(array: number[], offset?: number): void;
@@ -121,14 +121,14 @@ interface Uint8Array extends ArrayBufferView {
121121

122122
/**
123123
* 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.
125125
* @param offset The index in the current array at which the values are to be written.
126126
*/
127127
set(array: Uint8Array, offset?: number): void;
128128

129129
/**
130130
* 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.
132132
* @param offset The index in the current array at which the values are to be written.
133133
*/
134134
set(array: number[], offset?: number): void;
@@ -179,14 +179,14 @@ interface Int16Array extends ArrayBufferView {
179179

180180
/**
181181
* 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.
183183
* @param offset The index in the current array at which the values are to be written.
184184
*/
185185
set(array: Int16Array, offset?: number): void;
186186

187187
/**
188188
* 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.
190190
* @param offset The index in the current array at which the values are to be written.
191191
*/
192192
set(array: number[], offset?: number): void;
@@ -237,14 +237,14 @@ interface Uint16Array extends ArrayBufferView {
237237

238238
/**
239239
* 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.
241241
* @param offset The index in the current array at which the values are to be written.
242242
*/
243243
set(array: Uint16Array, offset?: number): void;
244244

245245
/**
246246
* 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.
248248
* @param offset The index in the current array at which the values are to be written.
249249
*/
250250
set(array: number[], offset?: number): void;
@@ -295,14 +295,14 @@ interface Int32Array extends ArrayBufferView {
295295

296296
/**
297297
* 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.
299299
* @param offset The index in the current array at which the values are to be written.
300300
*/
301301
set(array: Int32Array, offset?: number): void;
302302

303303
/**
304304
* 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.
306306
* @param offset The index in the current array at which the values are to be written.
307307
*/
308308
set(array: number[], offset?: number): void;
@@ -353,14 +353,14 @@ interface Uint32Array extends ArrayBufferView {
353353

354354
/**
355355
* 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.
357357
* @param offset The index in the current array at which the values are to be written.
358358
*/
359359
set(array: Uint32Array, offset?: number): void;
360360

361361
/**
362362
* 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.
364364
* @param offset The index in the current array at which the values are to be written.
365365
*/
366366
set(array: number[], offset?: number): void;
@@ -411,14 +411,14 @@ interface Float32Array extends ArrayBufferView {
411411

412412
/**
413413
* 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.
415415
* @param offset The index in the current array at which the values are to be written.
416416
*/
417417
set(array: Float32Array, offset?: number): void;
418418

419419
/**
420420
* 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.
422422
* @param offset The index in the current array at which the values are to be written.
423423
*/
424424
set(array: number[], offset?: number): void;
@@ -469,14 +469,14 @@ interface Float64Array extends ArrayBufferView {
469469

470470
/**
471471
* 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.
473473
* @param offset The index in the current array at which the values are to be written.
474474
*/
475475
set(array: Float64Array, offset?: number): void;
476476

477477
/**
478478
* 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.
480480
* @param offset The index in the current array at which the values are to be written.
481481
*/
482482
set(array: number[], offset?: number): void;

0 commit comments

Comments
 (0)