Skip to content

Commit 934c8c2

Browse files
committed
avoid &str to String conversions
1 parent 58136ff commit 934c8c2

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

compiler/rustc_ast_passes/src/feature_gate.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -386,7 +386,7 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
386386
).span_suggestion_verbose(
387387
lhs.span.shrink_to_lo(),
388388
"you might have meant to introduce a new binding",
389-
"let ".to_string(),
389+
"let ",
390390
Applicability::MachineApplicable,
391391
).emit();
392392
}

compiler/rustc_borrowck/src/diagnostics/move_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
467467
err.span_suggestion_verbose(
468468
span.shrink_to_lo(),
469469
"consider borrowing here",
470-
"&".to_string(),
470+
'&',
471471
Applicability::MaybeIncorrect,
472472
);
473473
}

compiler/rustc_borrowck/src/diagnostics/mutability_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
385385
err.span_suggestion_verbose(
386386
local_decl.source_info.span.shrink_to_lo(),
387387
"consider changing this to be mutable",
388-
"mut ".to_string(),
388+
"mut ",
389389
Applicability::MachineApplicable,
390390
);
391391
let tcx = self.infcx.tcx;

0 commit comments

Comments
 (0)