about summary refs log tree commit diff
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2017-04-11 17:12:00 -0400
committerNiko Matsakis <niko@alum.mit.edu>2017-04-11 20:32:48 -0400
commit7832db8031a9051d377e1da92bbcd56e366354c1 (patch)
tree82fb120de47f3f848388ddd0ad0de012651d8eec
parent0fae3324a2f58e921e2094a6971962c0b09c04ee (diff)
downloadrust-7832db8031a9051d377e1da92bbcd56e366354c1.tar.gz
rust-7832db8031a9051d377e1da92bbcd56e366354c1.zip
fix long line
-rw-r--r--src/librustc/traits/structural_impls.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/librustc/traits/structural_impls.rs b/src/librustc/traits/structural_impls.rs
index fcaa29be963..9d0b1035ade 100644
--- a/src/librustc/traits/structural_impls.rs
+++ b/src/librustc/traits/structural_impls.rs
@@ -130,7 +130,8 @@ impl<'tcx> fmt::Debug for traits::FulfillmentErrorCode<'tcx> {
         match *self {
             super::CodeSelectionError(ref e) => write!(f, "{:?}", e),
             super::CodeProjectionError(ref e) => write!(f, "{:?}", e),
-            super::CodeSubtypeError(ref a, ref b) => write!(f, "CodeSubtypeError({:?}, {:?})", a, b),
+            super::CodeSubtypeError(ref a, ref b) =>
+                write!(f, "CodeSubtypeError({:?}, {:?})", a, b),
             super::CodeAmbiguity => write!(f, "Ambiguity")
         }
     }