Skip to content

Commit e59756e

Browse files
Fix tidy
1 parent 48e5199 commit e59756e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/librustc/hir/lowering.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,9 @@ impl<'a> LoweringContext<'a> {
240240
}))
241241
}
242242
TyKind::Never => hir::TyNever,
243-
TyKind::Tup(ref tys) => hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect()),
243+
TyKind::Tup(ref tys) => {
244+
hir::TyTup(tys.iter().map(|ty| self.lower_ty(ty)).collect())
245+
}
244246
TyKind::Paren(ref ty) => {
245247
return self.lower_ty(ty);
246248
}

0 commit comments

Comments
 (0)