We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63fdf1a commit 73c1752Copy full SHA for 73c1752
src/librustc/hir/print.rs
@@ -1267,7 +1267,7 @@ impl<'a> State<'a> {
1267
}
1268
hir::ExprKind::Match(ref expr, ref arms, _) => {
1269
self.cbox(INDENT_UNIT);
1270
- self.ibox(4);
+ self.ibox(INDENT_UNIT);
1271
self.word_nbsp("match");
1272
self.print_expr_as_cond(&expr);
1273
self.s.space();
src/libsyntax/print/pprust.rs
@@ -1976,7 +1976,7 @@ impl<'a> State<'a> {
1976
1977
ast::ExprKind::Match(ref expr, ref arms) => {
1978
1979
1980
1981
self.print_expr_as_cond(expr);
1982
0 commit comments