Skip to content

Commit

Permalink
Fixed links
Browse files Browse the repository at this point in the history
  • Loading branch information
syrusakbary committed Jul 17, 2020
1 parent 949af09 commit 4322c8d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/compiler-cranelift/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let compiler = Cranelift::new();
let store = Store::new(&JIT::new(&compiler).engine());
```

*Note: you can find a [full working example using Cranelift compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler-cranelift.rs).*
*Note: you can find a [full working example using Cranelift compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler_cranelift.rs).*

## When to use Cranelift

Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-llvm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let compiler = LLVM::new();
let store = Store::new(&JIT::new(&compiler).engine());
```

*Note: you can find a [full working example using LLVM compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler-llvm.rs).*
*Note: you can find a [full working example using LLVM compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler_llvm.rs).*

## When to use LLVM

Expand Down
2 changes: 1 addition & 1 deletion lib/compiler-singlepass/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ let compiler = Singlepass::new();
let store = Store::new(&JIT::new(&compiler).engine());
```

*Note: you can find a [full working example using Singlepass compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler-singlepass.rs).*
*Note: you can find a [full working example using Singlepass compiler here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/compiler_singlepass.rs).*

## When to use Singlepass

Expand Down
2 changes: 1 addition & 1 deletion lib/engine-jit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ After the compiler process the result, the JIT pushes it into
memory and links it's contents so it can be usable by the
`wasmer` api.

*Note: you can find a [full working example using the JIT engine here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/engine-jit.rs).*
*Note: you can find a [full working example using the JIT engine here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/engine_jit.rs).*

### Acknowledgments

Expand Down
2 changes: 1 addition & 1 deletion lib/engine-native/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ so it can be usable by the `wasmer` API.

This allows Wasmer to achieve *blazing fast* native startup times.

*Note: you can find a [full working example using the JIT engine here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/engine-jit.rs).*
*Note: you can find a [full working example using the JIT engine here](https://github.com/wasmerio/wasmer-reborn/blob/master/examples/engine_native.rs).*

## Requirements

Expand Down

0 comments on commit 4322c8d

Please sign in to comment.