Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
kyledecot committed Nov 9, 2023
1 parent f822639 commit b9ac1df
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/js-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1604,7 +1604,11 @@ extern "C" {
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView)
#[wasm_bindgen(constructor)]
pub fn new_with_shared_array_buffer(buffer: &SharedArrayBuffer, byteOffset: usize, byteLength: usize) -> DataView;
pub fn new_with_shared_array_buffer(
buffer: &SharedArrayBuffer,
byteOffset: usize,
byteLength: usize,
) -> DataView;

/// The ArrayBuffer referenced by this view. Fixed at construction time and thus read only.
///
Expand Down

0 comments on commit b9ac1df

Please sign in to comment.