Skip to content

Commit

Permalink
Fix bad target name in Walkthrough
Browse files Browse the repository at this point in the history
Walkthrough currently say:

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

```
rustup target add aarch64-fuchsia
```
  • Loading branch information
diminishedprime authored Aug 31, 2022
1 parent 4fd4de7 commit a928255
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 a928255

Please sign in to comment.