aboutsummaryrefslogtreecommitdiff
path: root/Web.md
diff options
context:
space:
mode:
authorDan Gohman <sunfish@mozilla.com>2015-07-06 17:27:37 -0700
committerDan Gohman <sunfish@mozilla.com>2015-07-06 17:27:37 -0700
commit603f84c21795de1cc516a690efa781d9b3c2f2c2 (patch)
treecaf74fc455aca0f4e03568de35be41d63ac595ab /Web.md
parent1476df2e6dc693d61fd5107ff5d9369cd86dd35c (diff)
downloadnanowasm-design-603f84c21795de1cc516a690efa781d9b3c2f2c2.tar.gz
Fix several link anchor names.
Diffstat (limited to 'Web.md')
-rw-r--r--Web.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/Web.md b/Web.md
index 660161b..1d29931 100644
--- a/Web.md
+++ b/Web.md
@@ -17,7 +17,7 @@ that the design, especially that of the [MVP](MVP.md), are sensible:
[subresource integrity][] to enable distribution, especially through content
distribution networks and to implement
[dynamic linking](FutureFeatures.md#dynamic-linking).
-* A [module](MVP.md#Modules) can be loaded in the same way as an ES6 module
+* A [module](MVP.md#modules) can be loaded in the same way as an ES6 module
(`import` statements, `Reflect` API, `Worker` constructor, etc) and the result
is reflected to JS as an ES6 module object.
- Exports are the ES6 module object exports.
@@ -33,12 +33,12 @@ that the design, especially that of the [MVP](MVP.md), are sensible:
and call an undefined `extern` function and the target JavaScript function
would be given the (mangled) name of the `extern` and put inside the
imported ES6 module.
-* Once [threads are supported](PostMVP.md#Threads), a WebAssembly module would
+* Once [threads are supported](PostMVP.md#threads), a WebAssembly module would
initially be distributed between workers via `postMessage()`.
- This also has the effect of explicitly sharing code so that engines don't
perform N fetches and compile N copies.
- May later standardize a more direct way to create a thread from WebAssembly.
-* Once [SIMD is supported](PostMVP.md#Fixed-width-SIMD), a Web implementation of
+* Once [SIMD is supported](PostMVP.md#fixed-width-simd), a Web implementation of
WebAssembly would:
- Be statically typed analogous to [SIMD.js-in-asm.js][];
- Reuse specification of operation semantics (with TC39);