about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorYuki Okushi <jtitor@2k36.org>2022-07-29 15:40:02 +0900
committerGitHub <noreply@github.com>2022-07-29 15:40:02 +0900
commitda3f951bb04eb1070cd51b0355f8091671d2c98e (patch)
tree3c2eec68a322993a1faeaeaf1f974f66affa7e91 /src
parentfd3610ed2eba43ee8ae74838fafee27e1286b73e (diff)
parent957fe0ba61761bce555ccc2870fc46e79349d825 (diff)
downloadrust-da3f951bb04eb1070cd51b0355f8091671d2c98e.tar.gz
rust-da3f951bb04eb1070cd51b0355f8091671d2c98e.zip
Rollup merge of #99845 - xtexChooser:patch-1, r=GuillaumeGomez
Remove `$` prefix for bash scripts in doc
Diffstat (limited to 'src')
-rw-r--r--src/doc/rustc/src/targets/custom.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/rustc/src/targets/custom.md b/src/doc/rustc/src/targets/custom.md
index 98e113a663b..27ef2f49eee 100644
--- a/src/doc/rustc/src/targets/custom.md
+++ b/src/doc/rustc/src/targets/custom.md
@@ -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`.