Skip to content

Commit

Permalink
Merge pull request #1137 from DBarney/patch-1
Browse files Browse the repository at this point in the history
fixing a small spelling error
  • Loading branch information
alexcrichton authored Jan 2, 2019
2 parents 465bb38 + 3858fe7 commit 8f23ee6
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions crates/js-sys/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -785,7 +785,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Float32Array;

/// An `Float32Array()` which creates an array with an intenral buffer large
/// An `Float32Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float32Array)
Expand Down Expand Up @@ -869,7 +869,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Float64Array;

/// An `Float64Array()` which creates an array with an intenral buffer large
/// An `Float64Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Float64Array)
Expand Down Expand Up @@ -1088,7 +1088,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Int8Array;

/// An `Int8Array()` which creates an array with an intenral buffer large
/// An `Int8Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int8Array)
Expand Down Expand Up @@ -1172,7 +1172,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Int16Array;

/// An `Int16Array()` which creates an array with an intenral buffer large
/// An `Int16Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int16Array)
Expand Down Expand Up @@ -1256,7 +1256,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Int32Array;

/// An `Int32Array()` which creates an array with an intenral buffer large
/// An `Int32Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Int32Array)
Expand Down Expand Up @@ -3024,7 +3024,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Uint8Array;

/// An `Uint8Array()` which creates an array with an intenral buffer large
/// An `Uint8Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array)
Expand Down Expand Up @@ -3110,7 +3110,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Uint8ClampedArray;

/// An `Uint8ClampedArray()` which creates an array with an intenral buffer large
/// An `Uint8ClampedArray()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8ClampedArray)
Expand Down Expand Up @@ -3194,7 +3194,7 @@ extern "C" {
#[wasm_bindgen(constructor)]
pub fn new(constructor_arg: &JsValue) -> Uint16Array;

/// An `Uint16Array()` which creates an array with an intenral buffer large
/// An `Uint16Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint16Array)
Expand Down Expand Up @@ -3272,7 +3272,7 @@ extern "C" {
#[derive(Clone, Debug)]
pub type Uint32Array;

/// An `Uint32Array()` which creates an array with an intenral buffer large
/// An `Uint32Array()` which creates an array with an internal buffer large
/// enough for `length` elements.
///
/// [MDN documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint32Array)
Expand Down

0 comments on commit 8f23ee6

Please sign in to comment.