Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update header to match Roadmap page name #359

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _includes/header.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<a class="site-nav-item btn" href="/">Overview</a>
<a class="site-nav-item btn" href="/getting-started/developers-guide/">Getting Started</a>
<a class="site-nav-item btn" href="/specs">Specs</a>
<a class="site-nav-item btn" href="/roadmap/">Future features</a>
<a class="site-nav-item btn" href="/roadmap/">Roadmap</a>
<a class="site-nav-item btn" href="/community/resources/">Community</a>
<a class="site-nav-item btn" href="/docs/faq/">FAQ</a>
</nav>
Expand Down
2 changes: 1 addition & 1 deletion getting-started/js-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ _We assume here that you already have a .wasm module, whether [compiled from a C

## Loading and running

While there are [future plans](/docs/future-features/) to allow WebAssembly modules to be loaded just like ES6 modules (using `<script type='module'>`), WebAssembly must currently be loaded and compiled by JavaScript. For basic loading, there are three steps:
While there are [future plans](/roadmap/) to allow WebAssembly modules to be loaded just like ES6 modules (using `<script type='module'>`), WebAssembly must currently be loaded and compiled by JavaScript. For basic loading, there are three steps:

- Get the `.wasm` bytes into a typed array or `ArrayBuffer`
- Compile the bytes into a `WebAssembly.Module`
Expand Down