Skip to content

Commit 8c5ffd3

Browse files
committed
Reduce line length
1 parent f395b2b commit 8c5ffd3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc/middle/ty.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6184,7 +6184,9 @@ impl<'tcx> ctxt<'tcx> {
61846184
format!("found variable"),
61856185
_ => format!("{}", err.description()),
61866186
};
6187-
span_err!(tcx.sess, count_expr.span, E0307, "{}, expected valid constant integer for repeat count", err_msg);
6187+
span_err!(tcx.sess, count_expr.span, E0307,
6188+
"{}, expected valid constant integer for repeat count",
6189+
err_msg);
61886190
}
61896191
}
61906192
0

0 commit comments

Comments
 (0)