Skip to content

Commit 696ef2c

Browse files
authored
chore: fix broken links (#12041)
* fix broken links * fix broken links
1 parent 1ab8603 commit 696ef2c

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

crates/wasmtime/src/config.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1176,7 +1176,7 @@ impl Config {
11761176
/// incomplete.
11771177
///
11781178
/// [proposal]:
1179-
/// https://github.com/WebAssembly/component-model/blob/main/design/mvp/Async.md
1179+
/// https://github.com/WebAssembly/component-model/blob/main/design/mvp/Concurrency.md
11801180
#[cfg(feature = "component-model-async")]
11811181
pub fn wasm_component_model_async(&mut self, enable: bool) -> &mut Self {
11821182
self.wasm_features(WasmFeatures::CM_ASYNC, enable);
@@ -1189,7 +1189,7 @@ impl Config {
11891189
/// incomplete.
11901190
///
11911191
/// [proposal]:
1192-
/// https://github.com/WebAssembly/component-model/blob/main/design/mvp/Async.md
1192+
/// https://github.com/WebAssembly/component-model/blob/main/design/mvp/Concurrency.md
11931193
#[cfg(feature = "component-model-async")]
11941194
pub fn wasm_component_model_async_builtins(&mut self, enable: bool) -> &mut Self {
11951195
self.wasm_features(WasmFeatures::CM_ASYNC_BUILTINS, enable);
@@ -1201,7 +1201,7 @@ impl Config {
12011201
/// Please note that Wasmtime's support for this feature is _very_
12021202
/// incomplete.
12031203
///
1204-
/// [proposal]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Async.md
1204+
/// [proposal]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Concurrency.md
12051205
#[cfg(feature = "component-model-async")]
12061206
pub fn wasm_component_model_async_stackful(&mut self, enable: bool) -> &mut Self {
12071207
self.wasm_features(WasmFeatures::CM_ASYNC_STACKFUL, enable);
@@ -1226,7 +1226,7 @@ impl Config {
12261226
/// Please note that Wasmtime's support for this feature is _very_
12271227
/// incomplete.
12281228
///
1229-
/// [proposal]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Async.md
1229+
/// [proposal]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Concurrency.md
12301230
#[cfg(feature = "component-model")]
12311231
pub fn wasm_component_model_error_context(&mut self, enable: bool) -> &mut Self {
12321232
self.wasm_features(WasmFeatures::CM_ERROR_CONTEXT, enable);

crates/wasmtime/src/runtime/component/concurrent.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
//! This module and its submodules provide host runtime support for Component
44
//! Model Async features such as async-lifted exports, async-lowered imports,
55
//! streams, futures, and related intrinsics. See [the Async
6-
//! Explainer](https://github.com/WebAssembly/component-model/blob/main/design/mvp/Async.md)
6+
//! Explainer](https://github.com/WebAssembly/component-model/blob/main/design/mvp/Concurrency.md)
77
//! for a high-level overview.
88
//!
99
//! At the core of this support is an event loop which schedules and switches

0 commit comments

Comments
 (0)