rustwasm / book

The Rust and WebAssembly Book
https://rustwasm.github.io/docs/book/
MIT License
1.73k stars 208 forks source link

Typo under Linear Memory in 3.1 What is WebAssembly? #152

Closed tyleranton closed 5 years ago

tyleranton commented 5 years ago

There is a typo in the What is WebAssembly page under Linear Memory.

A wasm module has access to a single "linear memory", which is essentially a flat array of a bytes.

should be

A wasm module has access to a single "linear memory", which is essentially a flat array of bytes.

I can create a PR for this.