From 7cf90d0a1d133b41b06c09272b6f645c142e7ade Mon Sep 17 00:00:00 2001 From: "Pweaver (Paul Weaver)" Date: Mon, 3 Oct 2016 15:18:27 -0400 Subject: [PATCH] fixes multi-line string whitespace in librustc_incremental/persist/fs.rs --- src/librustc_incremental/persist/fs.rs | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/librustc_incremental/persist/fs.rs b/src/librustc_incremental/persist/fs.rs index 14e4f4219618..1beb906c5966 100644 --- a/src/librustc_incremental/persist/fs.rs +++ b/src/librustc_incremental/persist/fs.rs @@ -240,10 +240,12 @@ pub fn prepare_session_directory(tcx: TyCtxt) -> Result { source_directory.display()); if !allows_links { - tcx.sess.warn(&format!("Hard linking files in the incremental compilation - cache failed. Copying files instead. Consider moving the cache directory to a - file system which supports hard linking in session dir `{}`" - , session_dir.display()) + tcx.sess.warn(&format!("Hard linking files in the incremental \ + compilation cache failed. Copying files \ + instead. Consider moving the cache \ + directory to a file system which supports \ + hard linking in session dir `{}`", + session_dir.display()) ); }