Skip to content

Commit 7832db8

Browse files
committed
fix long line
1 parent 0fae332 commit 7832db8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/librustc/traits/structural_impls.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,8 @@ impl<'tcx> fmt::Debug for traits::FulfillmentErrorCode<'tcx> {
130130
match *self {
131131
super::CodeSelectionError(ref e) => write!(f, "{:?}", e),
132132
super::CodeProjectionError(ref e) => write!(f, "{:?}", e),
133-
super::CodeSubtypeError(ref a, ref b) => write!(f, "CodeSubtypeError({:?}, {:?})", a, b),
133+
super::CodeSubtypeError(ref a, ref b) =>
134+
write!(f, "CodeSubtypeError({:?}, {:?})", a, b),
134135
super::CodeAmbiguity => write!(f, "Ambiguity")
135136
}
136137
}

0 commit comments

Comments
 (0)