Skip to content

Commit d6a0fbd

Browse files
authored
Rollup merge of rust-lang#101251 - diminishedprime:patch-1, r=JohnTitor
Fix bad target name in Walkthrough Walkthrough currently say: ``` rustup target add aarch_64-fuchsia ``` but should say ``` rustup target add aarch64-fuchsia ```
2 parents baa19eb + a928255 commit d6a0fbd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/rustc/src/platform-support/fuchsia.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ the following commands:
7979

8080
```sh
8181
rustup target add x86_64-fuchsia
82-
rustup target add aarch_64-fuchsia
82+
rustup target add aarch64-fuchsia
8383
```
8484

8585
After installing our Fuchsia targets, we can now compile a Rust binary that targets

0 commit comments

Comments
 (0)