Skip to content
This repository was archived by the owner on May 3, 2022. It is now read-only.

Commit 8192e2c

Browse files
jnyfahNick Vidal
authored and
Nick Vidal
committed
fixed images
1 parent b1265e0 commit 8192e2c

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/WebAssembly/Golang.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebAssembly with Golang
22

3-
![Golang Webassembly](/static/img/tutorial/golangWasi.jpg?raw=true)
3+
![Golang Webassembly](/img/tutorial/golangWasi.jpg?raw=true)
44

55
## Environment setup
66

@@ -63,7 +63,7 @@ func main(){
6363
```bash
6464
go run main.go
6565
```
66-
![Golang Screenshot1](/static/img/tutorial/golangRunScreenshot.png?raw=true)
66+
![Golang Screenshot1](/img/tutorial/golangRunScreenshot.png?raw=true)
6767

6868

6969

@@ -83,4 +83,4 @@ file main.wasm
8383
```bash
8484
wasmtime main.wasm
8585
```
86-
![Golang Screenshot2](/static/img/tutorial/golangWasmScreenshot.png?raw=true)
86+
![Golang Screenshot2](/img/tutorial/golangWasmScreenshot.png?raw=true)

docs/WebAssembly/Rust.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WebAssembly with Rust
22

3-
![Rust WASI](/static/img/tutorial/rustWasi.jpg?raw=true)
3+
![Rust WASI](/img/tutorial/rustWasi.jpg?raw=true)
44

55
## Environment setup
66

@@ -69,14 +69,14 @@ fn fib (n: u32) -> u32 {
6969
cargo build
7070
cargo run
7171
```
72-
![Rust Screenshot1](/static/img/tutorial/rustRunSreenshot.png?raw=true)
72+
![Rust Screenshot1](/img/tutorial/rustRunSreenshot.png?raw=true)
7373

7474
2. Compile to wasm
7575

7676
```bash
7777
cargo build --target=wasm32-wasi
7878
```
79-
![Rust Screenshot2](/static/img/tutorial/rustCompileScreenshot.png?raw=true)
79+
![Rust Screenshot2](/img/tutorial/rustCompileScreenshot.png?raw=true)
8080

8181

8282
3. The wasm file created in release folder of wasi32
@@ -91,6 +91,6 @@ file target/wasm32-wasi/release/demo.wasm
9191

9292
wasmtime target/wasm32-wasi/release/demo.wasm
9393
```
94-
![Rust Screenshot3](/static/img/tutorial/rustWasm.png?raw=true)
94+
![Rust Screenshot3](/img/tutorial/rustWasm.png?raw=true)
9595

9696

0 commit comments

Comments
 (0)