Skip to content

Commit 7cf90d0

Browse files
committed
fixes multi-line string whitespace in librustc_incremental/persist/fs.rs
1 parent 5e3aaab commit 7cf90d0

File tree

1 file changed

+6
-4
lines changed
  • src/librustc_incremental/persist

1 file changed

+6
-4
lines changed

src/librustc_incremental/persist/fs.rs

+6-4
Original file line numberDiff line numberDiff line change
@@ -240,10 +240,12 @@ pub fn prepare_session_directory(tcx: TyCtxt) -> Result<bool, ()> {
240240
source_directory.display());
241241

242242
if !allows_links {
243-
tcx.sess.warn(&format!("Hard linking files in the incremental compilation
244-
cache failed. Copying files instead. Consider moving the cache directory to a
245-
file system which supports hard linking in session dir `{}`"
246-
, session_dir.display())
243+
tcx.sess.warn(&format!("Hard linking files in the incremental \
244+
compilation cache failed. Copying files \
245+
instead. Consider moving the cache \
246+
directory to a file system which supports \
247+
hard linking in session dir `{}`",
248+
session_dir.display())
247249
);
248250
}
249251

0 commit comments

Comments
 (0)