diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-09-01 21:37:12 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-01 21:37:12 +0200 |
| commit | f6c7c4edbaaa4d49b424c9bc25291860626f27ca (patch) | |
| tree | 65f6b8ace66fce488558a0c2da442768f3bccc19 /src | |
| parent | 21c8447d789b17e5902f2e9793eef0006559ef9b (diff) | |
| parent | a928255ab1c6a594faa15f93d912c1179ae354ea (diff) | |
| download | rust-f6c7c4edbaaa4d49b424c9bc25291860626f27ca.tar.gz rust-f6c7c4edbaaa4d49b424c9bc25291860626f27ca.zip | |
Rollup merge of #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 ```
Diffstat (limited to 'src')
| -rw-r--r-- | src/doc/rustc/src/platform-support/fuchsia.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rustc/src/platform-support/fuchsia.md b/src/doc/rustc/src/platform-support/fuchsia.md index c2a1613f288..94373b01cc4 100644 --- a/src/doc/rustc/src/platform-support/fuchsia.md +++ b/src/doc/rustc/src/platform-support/fuchsia.md @@ -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 |
