Skip to content

Commit ec648a1

Browse files
committed
Fix indentation of error message
So I just encountered this error for the first time. It's unclear what it means, why I encountered it, or how to fix it. But worst of all, it has a random newline and weird indentation! This commit fixes that last bit.
1 parent 306035c commit ec648a1

File tree

1 file changed

+1
-1
lines changed
  • src/librustc/ty/inhabitedness

1 file changed

+1
-1
lines changed

src/librustc/ty/inhabitedness/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ impl<'a, 'gcx, 'tcx> TyS<'tcx> {
187187
// which contains a Foo<((T, T), (T, T))>
188188
// which contains a Foo<(((T, T), (T, T)), ((T, T), (T, T)))>
189189
// etc.
190-
let error = format!("reached recursion limit while checking
190+
let error = format!("reached recursion limit while checking \
191191
inhabitedness of `{}`", self);
192192
tcx.sess.fatal(&error);
193193
}

0 commit comments

Comments
 (0)