rustwasm / book

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

Fix typo under Linear Memory #153

Closed tyleranton closed 5 years ago

tyleranton commented 5 years ago

Summary

Fixed the following typo:

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

to

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

Fixes #152