From 56a57f2653a9420c67a8faf883c61fbb57033bfc Mon Sep 17 00:00:00 2001 From: "Jiaxiao Zhou (Mossaka)" Date: Tue, 5 Nov 2024 16:23:38 -0800 Subject: [PATCH] wit: fix broken links to wasm-tools Signed-off-by: Jiaxiao Zhou (Mossaka) --- wit/docs.go | 2 +- wit/wit.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wit/docs.go b/wit/docs.go index b2401b95..c286a604 100644 --- a/wit/docs.go +++ b/wit/docs.go @@ -32,6 +32,6 @@ // [WebAssembly Interface Type]: https://component-model.bytecodealliance.org/design/wit.html // [WebAssembly Component Model]: https://component-model.bytecodealliance.org/introduction.html // [wit-parser]: https://docs.rs/wit-parser/latest/wit_parser/ -// [source]: https://github.com/wasm-tools/tree/main/crates/wit-parser +// [source]: https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-parser // [wasm-tools]: https://crates.io/crates/wasm-tools package wit diff --git a/wit/wit.go b/wit/wit.go index cabd0d7f..988b2a2c 100644 --- a/wit/wit.go +++ b/wit/wit.go @@ -433,7 +433,7 @@ func escape(name string) string { // A map of all [WIT keywords]. // -// [WIT keywords]: https://github.com/wasm-tools/blob/main/crates/wit-parser/src/ast/lex.rs#L524-L591 +// [WIT keywords]: https://github.com/bytecodealliance/wasm-tools/blob/main/crates/wit-parser/src/ast/lex.rs#L524-L591 var witKeywords = map[string]bool{ "as": true, "bool": true,