Skip to content

Commit b2f72c3

Browse files
author
Dylan McKay
committed
Add spaces after commas
1 parent 21f3248 commit b2f72c3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: src/librustc/middle/liveness.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1487,9 +1487,9 @@ impl<'a, 'tcx> Liveness<'a, 'tcx> {
14871487
// Type inference causes unsuffixed integer literals
14881488
// to be evaluated as i32 values. We still want to
14891489
// inform the user of a semicolon in this case.
1490-
(&ty::TyInt(ast::TyI32),&ty::TyInt(..)) => true,
1491-
(&ty::TyInt(ast::TyI32),&ty::TyUint(..)) => true,
1492-
(a,b) => (a == b),
1490+
(&ty::TyInt(ast::TyI32), &ty::TyInt(..)) => true,
1491+
(&ty::TyInt(ast::TyI32), &ty::TyUint(..)) => true,
1492+
(a, b) => (a == b),
14931493
}
14941494
},
14951495
_ => false

0 commit comments

Comments
 (0)