Skip to content

Commit 47ad9e1

Browse files
Zoxcbrson
authored andcommitted
Fix formatting
1 parent f0a3296 commit 47ad9e1

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc/hir/lowering.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2187,7 +2187,9 @@ impl<'a> LoweringContext<'a> {
21872187
let iter = self.str_to_ident("iter");
21882188

21892189
let next_ident = self.str_to_ident("_next");
2190-
let next_pat = self.pat_ident_binding_mode(e.span, next_ident, hir::BindByValue(hir::MutMutable));
2190+
let next_pat = self.pat_ident_binding_mode(e.span,
2191+
next_ident,
2192+
hir::BindByValue(hir::MutMutable));
21912193

21922194
// `::std::option::Option::Some(val) => next = val`
21932195
let pat_arm = {

0 commit comments

Comments
 (0)