Skip to content

Commit 65cb5f7

Browse files
author
Jonathan Turner
committed
Add space after equals
1 parent 6793cac commit 65cb5f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_borrowck/borrowck/check_loans.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ impl<'a, 'tcx> CheckLoanCtxt<'a, 'tcx> {
475475

476476
let mut err = match (new_loan.kind, old_loan.kind) {
477477
(ty::MutBorrow, ty::MutBorrow) => {
478-
let mut err =struct_span_err!(self.bccx, new_loan.span, E0499,
478+
let mut err = struct_span_err!(self.bccx, new_loan.span, E0499,
479479
"cannot borrow `{}`{} as mutable \
480480
more than once at a time",
481481
nl, new_loan_msg);

0 commit comments

Comments
 (0)