Fix documentation for Uint32Array.subarray

This commit is contained in:
Solal Pirelli 2014-11-30 10:03:53 +01:00
parent d1bf508a7b
commit a74bc81ba2

2
bin/lib.d.ts vendored
View file

@ -1489,7 +1489,7 @@ interface Uint32Array extends ArrayBufferView {
set(array: number[], offset?: number): void;
/**
* Gets a new Int8Array view of the ArrayBuffer Object store for this array, specifying the first and last members of the subarray.
* Gets a new Uint32Array view of the ArrayBuffer Object store for this array, specifying the first and last members of the subarray.
* @param begin The index of the beginning of the array.
* @param end The index of the end of the array.
*/