aboutsummaryrefslogtreecommitdiff
path: root/HighLevelGoals.md
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2017-11-15 08:48:14 -0800
committerJF Bastien <github@jfbastien.com>2017-11-15 09:48:14 -0700
commite2be77eaac770268a4c22fb09c6f648de7b9b6b8 (patch)
treeba99bc504cd96f6471147582e08a5e19ebd8312d /HighLevelGoals.md
parent71c97d9081ac6d64497d586e8f45c8145ed3f86e (diff)
downloadnanowasm-design-e2be77eaac770268a4c22fb09c6f648de7b9b6b8.tar.gz
Fixup links to future features (#1157)
This link standardizes how all the other design pages will refer to future features (either in `FutureFeatures.md` or in a tracking issue). All links to these upcoming features now use references at the bottom of the doc page (as opposed to inline links or references). Note that this change makes it very easy for the doc links to be updated when a tracking issue is started. As all the references have a standard format; a simple find/replace script will get everything. This commit also makes sure that references now point to a tracking issue if one exists. Note that this means a future CL can now delete some of the unnecessary sections from `FutureFeatures.md`. The only visible change from this commit is that certain broken links are now fixed, or links pointing to a doc section now point to the correct tracking issue.
Diffstat (limited to 'HighLevelGoals.md')
-rw-r--r--HighLevelGoals.md13
1 files changed, 8 insertions, 5 deletions
diff --git a/HighLevelGoals.md b/HighLevelGoals.md
index b65d85e..9e7359d 100644
--- a/HighLevelGoals.md
+++ b/HighLevelGoals.md
@@ -10,10 +10,10 @@
* a [Minimum Viable Product (MVP)](MVP.md) for the standard with
roughly the same functionality as [asm.js](http://asmjs.org), primarily
aimed at [C/C++](CAndC++.md);
- * [additional features :unicorn:][future features],
- initially focused on key features like threads,
- zero cost exceptions, and SIMD,
- follow by additional features
+ * [additional features :unicorn:][future general],
+ initially focused on key features like [threads][future threads],
+ [zero cost exceptions][future exceptions], and [SIMD][future simd],
+ followed by additional features
prioritized by feedback and experience, including support for languages
other than C/C++.
3. Design to execute within and integrate well with the *existing*
@@ -33,4 +33,7 @@
* promote other compilers and tools targeting WebAssembly; and
* enable other useful [tooling](Tooling.md).
-[future features]: FutureFeatures.md
+[future general]: FutureFeatures.md
+[future threads]: https://github.com/WebAssembly/design/issues/1073
+[future simd]: https://github.com/WebAssembly/design/issues/1075
+[future exceptions]: https://github.com/WebAssembly/design/issues/1078