From 6867f34d33b82f8c46289df172f5a14a3f039470 Mon Sep 17 00:00:00 2001 From: relrelb Date: Wed, 16 Mar 2022 16:51:45 +0200 Subject: [PATCH] Fix broken links (#1294) --- crates/core_arch/src/wasm32/atomic.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/crates/core_arch/src/wasm32/atomic.rs b/crates/core_arch/src/wasm32/atomic.rs index f79e946acc..52d4bea872 100644 --- a/crates/core_arch/src/wasm32/atomic.rs +++ b/crates/core_arch/src/wasm32/atomic.rs @@ -31,7 +31,7 @@ extern "C" { /// didn't block /// * 2 - the thread blocked, but the timeout expired. /// -/// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory +/// [instr]: https://webassembly.github.io/threads/core/syntax/instructions.html#syntax-instr-atomic-memory #[inline] #[cfg_attr(test, assert_instr(memory.atomic.wait32))] #[target_feature(enable = "atomics")] @@ -61,7 +61,7 @@ pub unsafe fn memory_atomic_wait32(ptr: *mut i32, expression: i32, timeout_ns: i /// didn't block /// * 2 - the thread blocked, but the timeout expired. /// -/// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory +/// [instr]: https://webassembly.github.io/threads/core/syntax/instructions.html#syntax-instr-atomic-memory #[inline] #[cfg_attr(test, assert_instr(memory.atomic.wait64))] #[target_feature(enable = "atomics")] @@ -83,7 +83,7 @@ pub unsafe fn memory_atomic_wait64(ptr: *mut i64, expression: i64, timeout_ns: i /// /// Returns the number of waiters which were actually notified. /// -/// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory +/// [instr]: https://webassembly.github.io/threads/core/syntax/instructions.html#syntax-instr-atomic-memory #[inline] #[cfg_attr(test, assert_instr(memory.atomic.notify))] #[target_feature(enable = "atomics")]