@@ -562,28 +562,28 @@ extern "C" {
562
562
#[ wasm_bindgen( method, js_name = getUint16) ]
563
563
pub fn get_uint16_endian ( this : & DataView , byte_offset : usize , little_endian : bool ) -> u16 ;
564
564
565
- /// The getInt32() method gets a signed 16 -bit integer (byte) at the specified
565
+ /// The getInt32() method gets a signed 32 -bit integer (byte) at the specified
566
566
/// byte offset from the start of the DataView.
567
567
///
568
568
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32)
569
569
#[ wasm_bindgen( method, js_name = getInt32) ]
570
570
pub fn get_int32 ( this : & DataView , byte_offset : usize ) -> i32 ;
571
571
572
- /// The getInt32() method gets a signed 16 -bit integer (byte) at the specified
572
+ /// The getInt32() method gets a signed 32 -bit integer (byte) at the specified
573
573
/// byte offset from the start of the DataView.
574
574
///
575
575
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32)
576
576
#[ wasm_bindgen( method, js_name = getInt32) ]
577
577
pub fn get_int32_endian ( this : & DataView , byte_offset : usize , little_endian : bool ) -> i32 ;
578
578
579
- /// The getUint32() an unsigned 16 -bit integer (unsigned byte) at the specified
579
+ /// The getUint32() an unsigned 32 -bit integer (unsigned byte) at the specified
580
580
/// byte offset from the start of the view.
581
581
///
582
582
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32)
583
583
#[ wasm_bindgen( method, js_name = getUint32) ]
584
584
pub fn get_uint32 ( this : & DataView , byte_offset : usize ) -> u32 ;
585
585
586
- /// The getUint32() an unsigned 16 -bit integer (unsigned byte) at the specified
586
+ /// The getUint32() an unsigned 32 -bit integer (unsigned byte) at the specified
587
587
/// byte offset from the start of the view.
588
588
///
589
589
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32)
0 commit comments