Skip to content

Commit

Permalink
Rollup merge of #99845 - xtexChooser:patch-1, r=GuillaumeGomez
Browse files Browse the repository at this point in the history
Remove `$` prefix for bash scripts in doc
  • Loading branch information
JohnTitor committed Jul 29, 2022
2 parents fd3610e + 957fe0b commit da3f951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/doc/rustc/src/targets/custom.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ If you'd like to build for a target that is not yet supported by `rustc`, you ca
are JSON. To see the JSON for the host target, you can run:

```bash
$ rustc +nightly -Z unstable-options --print target-spec-json
rustc +nightly -Z unstable-options --print target-spec-json
```

To see it for a different target, add the `--target` flag:

```bash
$ rustc +nightly -Z unstable-options --target=wasm32-unknown-unknown --print target-spec-json
rustc +nightly -Z unstable-options --target=wasm32-unknown-unknown --print target-spec-json
```

To use a custom target, see the (unstable) [`build-std` feature](https://doc.rust-lang.org/nightly/cargo/reference/unstable.html#build-std) of `cargo`.

0 comments on commit da3f951

Please sign in to comment.