Skip to content

Commit

Permalink
Rollup merge of rust-lang#101251 - diminishedprime:patch-1, r=JohnTitor
Browse files Browse the repository at this point in the history
Fix  bad target name in Walkthrough

Walkthrough currently say:

```
rustup target add aarch_64-fuchsia
```
but should say

```
rustup target add aarch64-fuchsia
```
  • Loading branch information
Dylan-DPC committed Sep 1, 2022
2 parents 5bf3fb9 + a928255 commit db71963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/rustc/src/platform-support/fuchsia.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ the following commands:

```sh
rustup target add x86_64-fuchsia
rustup target add aarch_64-fuchsia
rustup target add aarch64-fuchsia
```

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

0 comments on commit db71963

Please sign in to comment.