Skip to content

Commit a1ed63b

Browse files
authored
Fix broken links
1 parent cfb6ccc commit a1ed63b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/doc/rustc/src/platform-support/wasm32-unknown-emscripten.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ This target is often used when compiling for the web, accessing web APIs, or
1111
interoperating with C and C++ code.
1212

1313
One existing user of this target is the
14-
[`pyodide` project](https://github.com/pyodide/pyodide) which provides a Python
15-
runtime in WebAssembly using Emscripten and compiles Python extension modules
16-
written in Rust to the `wasm32-unknown-emscripten` target.
14+
[`pyodide` project](https://pyodide.org/) which provides a Python runtime in
15+
WebAssembly using Emscripten and compiles Python extension modules written in Rust
16+
to the `wasm32-unknown-emscripten` target.
1717

1818
If you want to target the web but no not need interop with C/C++ or you want to
1919
produce a bare-bones WebAssembly binary and you do not require access to the host
2020
environment (e.g. stdio, file access, networking, etc.), consider using the
21-
[`wasm32-unknown-unknown`](./wasm32-unknown-unknown) target instead.
21+
[`wasm32-unknown-unknown`](./wasm32-unknown-unknown.md) target instead.
2222

2323
If you need access to the host environment, consider using one of the WASI targets
24-
([`wasm32-wasip1`](./wasm32-wasip1) or [`wasm32-wasip2`](./wasm32-wasip2)).
24+
([`wasm32-wasip1`](./wasm32-wasip1.md) or [`wasm32-wasip2`](./wasm32-wasip2.md)).
2525

2626
## Target maintainers
2727

@@ -38,7 +38,7 @@ said, those interested in maintaining this target are:
3838

3939
This target is cross-compiled. The Emscripten compiler toolchain (emsdk) must be
4040
installed to link Rust-compiled code with Emscripten's libc and other C/C++
41-
code. Please refer to https://emscripten.org/docs/getting_started/downloads.html
41+
code. Please refer to <https://emscripten.org/docs/getting_started/downloads.html>
4242
on how to get started with the emsdk.
4343

4444
## Building the target
@@ -88,8 +88,8 @@ $ cargo +nightly -Zbuild-std build
8888
## Testing
8989

9090
This target is not extensively tested in CI for the rust-lang/rust repository.
91-
It's recommended to test the `wasm32-wasip1` target instead for WebAssembly
92-
compatibility.
91+
It's recommended to test the [`wasm32-wasip1`](./wasm32-wasip1.md) target instead
92+
for WebAssembly compatibility.
9393

9494
## Conditionally compiling code
9595

0 commit comments

Comments
 (0)