Miscelaneous docs updates and fixes. (#1249)

Update references to things in CraneStation which have moved, WASI documentation
which has moved to the WASI repo, and fix a few typos.
This commit is contained in:
Dan Gohman
2020-03-08 08:11:17 -07:00
committed by GitHub
parent 0afa334f3e
commit fbe29da5cc
17 changed files with 30 additions and 2437 deletions

View File

@@ -42,7 +42,7 @@ We expect these to be implemented when network access is standardised.
We also currently do not support the `proc_raise` hostcall, as it is expected to
be dropped entirely from WASI.
[WASI API]: https://github.com/bytecodealliance/wasmtime/blob/master/docs/WASI-api.md
[WASI API]: https://github.com/WebAssembly/WASI/blob/master/phases/snapshot/docs.md
### Windows
In our Windows implementation, we currently support the minimal subset of [WASI API]

View File

@@ -1,5 +1,5 @@
//! Unix-specific hostcalls that implement
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
//! [WASI](https://github.com/WebAssembly/WASI).
mod fs;
pub(crate) mod fs_helpers;
mod misc;

View File

@@ -1,5 +1,5 @@
//! Windows-specific hostcalls that implement
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
//! [WASI](https://github.com/WebAssembly/WASI).
mod fs;
pub(crate) mod fs_helpers;
mod misc;

View File

@@ -1,5 +1,5 @@
//! Unix-specific hostcalls that implement
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
//! [WASI](https://github.com/WebAssembly/WASI).
mod fs;
pub(crate) mod fs_helpers;
mod misc;

View File

@@ -1,5 +1,5 @@
//! Windows-specific hostcalls that implement
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
//! [WASI](https://github.com/WebAssembly/WASI).
mod fs;
pub(crate) mod fs_helpers;
mod misc;