]> git.lizzy.rs Git - rust.git/commitdiff
fix indentation of session/mod.rs
authorNiko Matsakis <niko@alum.mit.edu>
Fri, 13 May 2016 22:48:54 +0000 (18:48 -0400)
committerNiko Matsakis <niko@alum.mit.edu>
Wed, 18 May 2016 14:11:36 +0000 (10:11 -0400)
src/librustc/session/mod.rs

index 61d6acfe061f7d8a3e40208f912ce70b5d0b719e..907241d1746d6f7317310245dcb29cdaad7fad8f 100644 (file)
@@ -628,9 +628,9 @@ pub fn span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
 }
 
 fn opt_span_bug_fmt<S: Into<MultiSpan>>(file: &'static str,
-                                          line: u32,
-                                          span: Option<S>,
-                                          args: fmt::Arguments) -> ! {
+                                        line: u32,
+                                        span: Option<S>,
+                                        args: fmt::Arguments) -> ! {
     tls::with_opt(move |tcx| {
         let msg = format!("{}:{}: {}", file, line, args);
         match (tcx, span) {