Skip to content

Commit

Permalink
Add space after equals
Browse files Browse the repository at this point in the history
  • Loading branch information
Jonathan Turner committed May 15, 2016
1 parent 6793cac commit 65cb5f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/librustc_borrowck/borrowck/check_loans.rs
Expand Up @@ -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);
Expand Down

0 comments on commit 65cb5f7

Please sign in to comment.