Add space after equals

This commit is contained in:
Jonathan Turner 2016-05-15 11:57:50 -07:00
parent 6793cace06
commit 65cb5f7378

View File

@ -475,7 +475,7 @@ impl<'a, 'tcx> CheckLoanCtxt<'a, 'tcx> {
let mut err = match (new_loan.kind, old_loan.kind) {
(ty::MutBorrow, ty::MutBorrow) => {
let mut err =struct_span_err!(self.bccx, new_loan.span, E0499,
let mut err = struct_span_err!(self.bccx, new_loan.span, E0499,
"cannot borrow `{}`{} as mutable \
more than once at a time",
nl, new_loan_msg);