Skip to content

Commit b4e9253

Browse files
authored
Merge pull request bytecodealliance#101 from 11Takanori/fix-404-not-found-error
Fix url
2 parents 9eecb1d + 4f83e78 commit b4e9253

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/primitives.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub enum CustomSectionKind {
4949

5050
/// Section code as defined [here].
5151
///
52-
/// [here]: https://webassembly.github.io/spec/binary/modules.html#sections
52+
/// [here]: https://webassembly.github.io/spec/core/binary/modules.html#sections
5353
#[derive(Debug, Copy, Clone, PartialEq, Eq, PartialOrd, Ord)]
5454
pub enum SectionCode<'a> {
5555
Custom {
@@ -72,7 +72,7 @@ pub enum SectionCode<'a> {
7272

7373
/// Types as defined [here].
7474
///
75-
/// [here]: https://webassembly.github.io/spec/syntax/types.html#types
75+
/// [here]: https://webassembly.github.io/spec/core/syntax/types.html#types
7676
#[derive(Debug, Copy, Clone, PartialEq, Eq)]
7777
pub enum Type {
7878
I32,
@@ -88,7 +88,7 @@ pub enum Type {
8888

8989
/// External types as defined [here].
9090
///
91-
/// [here]: https://webassembly.github.io/spec/syntax/types.html#external-types
91+
/// [here]: https://webassembly.github.io/spec/core/syntax/types.html#external-types
9292
#[derive(Debug, Copy, Clone)]
9393
pub enum ExternalKind {
9494
Function,
@@ -218,7 +218,7 @@ pub type SIMDLineIndex = u8;
218218

219219
/// Instructions as defined [here].
220220
///
221-
/// [here]: https://webassembly.github.io/spec/binary/instructions.html
221+
/// [here]: https://webassembly.github.io/spec/core/binary/instructions.html
222222
#[derive(Debug)]
223223
pub enum Operator<'a> {
224224
Unreachable,

0 commit comments

Comments
 (0)