diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2018-02-28 15:09:24 -0800 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2018-02-28 15:09:24 -0800 |
| commit | fac7d7cfb2388b01a27f2165cff78c252726260c (patch) | |
| tree | 345e8b8f8cb857776453fe0d1d543b45cc176c47 /src/libsyntax | |
| parent | f59ab8e96a99747f96a95fba6174658361009bb3 (diff) | |
| parent | 56a68285332000c858e9aeba7d66a4ec66ebff91 (diff) | |
| download | rust-fac7d7cfb2388b01a27f2165cff78c252726260c.tar.gz rust-fac7d7cfb2388b01a27f2165cff78c252726260c.zip | |
Rollup merge of #48359 - jsgf:remap-path-prefix, r=sanxiyn
Fixes #47311. r? @nrc
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/codemap.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libsyntax/codemap.rs b/src/libsyntax/codemap.rs index df5845f6c21..926548b6031 100644 --- a/src/libsyntax/codemap.rs +++ b/src/libsyntax/codemap.rs @@ -129,7 +129,7 @@ pub struct CodeMap { pub(super) files: RefCell<Vec<Rc<FileMap>>>, file_loader: Box<FileLoader>, // This is used to apply the file path remapping as specified via - // -Zremap-path-prefix to all FileMaps allocated within this CodeMap. + // --remap-path-prefix to all FileMaps allocated within this CodeMap. path_mapping: FilePathMapping, stable_id_to_filemap: RefCell<FxHashMap<StableFilemapId, Rc<FileMap>>>, /// In case we are in a doctest, replace all file names with the PathBuf, |
