Skip to content

Commit 5649b37

Browse files
committed
Aesthetic issue. Corrected indentation
1 parent 6fc7d45 commit 5649b37

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/librustc/hir/lowering.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2051,9 +2051,9 @@ impl<'a> LoweringContext<'a> {
20512051
let wildcard_arm: Option<&Expr> = else_opt.as_ref().map(|p| &**p);
20522052
let wildcard_pattern = self.pat_wild(e.span);
20532053
let body = if let Some(else_expr) = wildcard_arm {
2054-
P(self.lower_expr(else_expr))
2054+
P(self.lower_expr(else_expr))
20552055
} else {
2056-
self.expr_tuple(e.span, hir_vec![])
2056+
self.expr_tuple(e.span, hir_vec![])
20572057
};
20582058
arms.push(self.arm(hir_vec![wildcard_pattern], body));
20592059
}

0 commit comments

Comments
 (0)