Skip to content

Commit fbe29da

Browse files
authored
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.
1 parent 0afa334 commit fbe29da

File tree

17 files changed

+30
-2437
lines changed

17 files changed

+30
-2437
lines changed

crates/lightbeam/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Lightbeam passes 100% of the specification test suite, but that doesn't necessar
162162

163163
## Getting involved
164164

165-
You can file issues in the [Wasmtime issue tracker][Wasmtime issue tracker]. If you want to get involved jump into the [CraneStation Gitter room][cranestation-gitter] and someone can direct you to the right place. I wish I could say "the most useful thing you can do is play with it and open issues where you find problems" but until it passes the spec suite that won't be very helpful.
165+
You can file issues in the [Wasmtime issue tracker][Wasmtime issue tracker]. If you want to get involved jump into the [Bytecode Alliance Zulip][bytecodealliance-zulip] and someone can direct you to the right place. I wish I could say "the most useful thing you can do is play with it and open issues where you find problems" but until it passes the spec suite that won't be very helpful.
166166

167-
[cranestation-gitter]: https://gitter.im/CraneStation/Lobby
167+
[bytecodealliance-zulip]: https://bytecodealliance.zulipchat.com/
168168
[Wasmtime issue tracker]: https://github.com/bytecodealliance/wasmtime/issues

crates/wasi-common/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ We expect these to be implemented when network access is standardised.
4242
We also currently do not support the `proc_raise` hostcall, as it is expected to
4343
be dropped entirely from WASI.
4444

45-
[WASI API]: https://github.com/bytecodealliance/wasmtime/blob/master/docs/WASI-api.md
45+
[WASI API]: https://github.com/WebAssembly/WASI/blob/master/phases/snapshot/docs.md
4646

4747
### Windows
4848
In our Windows implementation, we currently support the minimal subset of [WASI API]

crates/wasi-common/src/old/snapshot_0/sys/unix/hostcalls_impl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Unix-specific hostcalls that implement
2-
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
2+
//! [WASI](https://github.com/WebAssembly/WASI).
33
mod fs;
44
pub(crate) mod fs_helpers;
55
mod misc;

crates/wasi-common/src/old/snapshot_0/sys/windows/hostcalls_impl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Windows-specific hostcalls that implement
2-
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
2+
//! [WASI](https://github.com/WebAssembly/WASI).
33
mod fs;
44
pub(crate) mod fs_helpers;
55
mod misc;

crates/wasi-common/src/sys/unix/hostcalls_impl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Unix-specific hostcalls that implement
2-
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
2+
//! [WASI](https://github.com/WebAssembly/WASI).
33
mod fs;
44
pub(crate) mod fs_helpers;
55
mod misc;

crates/wasi-common/src/sys/windows/hostcalls_impl/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
//! Windows-specific hostcalls that implement
2-
//! [WASI](https://github.com/bytecodealliance/wasmtime-wasi/blob/wasi/docs/WASI-overview.md).
2+
//! [WASI](https://github.com/WebAssembly/WASI).
33
mod fs;
44
pub(crate) mod fs_helpers;
55
mod misc;

0 commit comments

Comments
 (0)