Rollup merge of #120225 - micolous:patch-1, r=michaelwoerister

Fix -Zremap-path-scope typo

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

```@rustbot``` label: +F-trim-paths
This commit is contained in:
Matthias Krüger 2024-01-22 16:13:30 +01:00 committed by GitHub
commit 44e44f49d6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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
```