Skip to content

Commit

Permalink
Unrolled build for rust-lang#120225
Browse files Browse the repository at this point in the history
Rollup merge of rust-lang#120225 - micolous:patch-1, r=michaelwoerister

Fix -Zremap-path-scope typo

This fixes a documentation typo from rust-lang#115214 where `-Zremap-path-prefix=object` should be `-Zremap-path-scope=object`.

```@rustbot``` label: +F-trim-paths
  • Loading branch information
rust-timer authored Jan 22, 2024
2 parents 3066253 + 7ce206d commit a071e05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@ This flag accepts a comma-separated list of values and may be specified multiple
```sh
# This would produce an absolute path to main.rs in build outputs of
# "./main.rs".
rustc --remap-path-prefix=$(PWD)=/remapped -Zremap-path-prefix=object main.rs
rustc --remap-path-prefix=$(PWD)=/remapped -Zremap-path-scope=object main.rs
```

0 comments on commit a071e05

Please sign in to comment.