@@ -31,7 +31,7 @@ extern "C" {
3131/// didn't block
3232/// * 2 - the thread blocked, but the timeout expired.
3333///
34- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
34+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
3535#[ inline]
3636#[ cfg_attr( test, assert_instr( memory. atomic. wait32) ) ]
3737#[ target_feature( enable = "atomics" ) ]
@@ -61,7 +61,7 @@ pub unsafe fn memory_atomic_wait32(ptr: *mut i32, expression: i32, timeout_ns: i
6161/// didn't block
6262/// * 2 - the thread blocked, but the timeout expired.
6363///
64- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
64+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
6565#[ inline]
6666#[ cfg_attr( test, assert_instr( memory. atomic. wait64) ) ]
6767#[ target_feature( enable = "atomics" ) ]
@@ -83,7 +83,7 @@ pub unsafe fn memory_atomic_wait64(ptr: *mut i64, expression: i64, timeout_ns: i
8383///
8484/// Returns the number of waiters which were actually notified.
8585///
86- /// [instr]: https://webassembly.github.io/threads/syntax/instructions.html#syntax-instr-atomic-memory
86+ /// [instr]: https://webassembly.github.io/threads/core/ syntax/instructions.html#syntax-instr-atomic-memory
8787#[ inline]
8888#[ cfg_attr( test, assert_instr( memory. atomic. notify) ) ]
8989#[ target_feature( enable = "atomics" ) ]
0 commit comments