@@ -333,7 +333,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
333
333
let local_decl = & self . body . local_decls [ local] ;
334
334
assert_eq ! ( local_decl. mutability, Mutability :: Not ) ;
335
335
336
- err. span_label ( span, format ! ( "cannot {ACT}" , ACT = act ) ) ;
336
+ err. span_label ( span, format ! ( "cannot {act}" ) ) ;
337
337
err. span_suggestion (
338
338
local_decl. source_info . span ,
339
339
"consider changing this to be mutable" ,
@@ -357,7 +357,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
357
357
358
358
let captured_place = & self . upvars [ upvar_index. index ( ) ] . place ;
359
359
360
- err. span_label ( span, format ! ( "cannot {ACT}" , ACT = act ) ) ;
360
+ err. span_label ( span, format ! ( "cannot {act}" ) ) ;
361
361
362
362
let upvar_hir_id = captured_place. get_root_variable ( ) ;
363
363
@@ -397,7 +397,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
397
397
. span_to_snippet ( span)
398
398
. map_or ( false , |snippet| snippet. starts_with ( "&mut " ) ) =>
399
399
{
400
- err. span_label ( span, format ! ( "cannot {ACT}" , ACT = act ) ) ;
400
+ err. span_label ( span, format ! ( "cannot {act}" ) ) ;
401
401
err. span_suggestion (
402
402
span,
403
403
"try removing `&mut` here" ,
@@ -409,7 +409,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
409
409
PlaceRef { local, projection : [ ProjectionElem :: Deref ] }
410
410
if self . body . local_decls [ local] . is_ref_for_guard ( ) =>
411
411
{
412
- err. span_label ( span, format ! ( "cannot {ACT}" , ACT = act ) ) ;
412
+ err. span_label ( span, format ! ( "cannot {act}" ) ) ;
413
413
err. note (
414
414
"variables bound in patterns are immutable until the end of the pattern guard" ,
415
415
) ;
@@ -537,7 +537,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
537
537
Some ( ( true , err_help_span, suggested_code) ) => {
538
538
let ( is_trait_sig, local_trait) = self . is_error_in_trait ( local) ;
539
539
if !is_trait_sig {
540
- err. span_suggestion (
540
+ err. span_suggestion_verbose (
541
541
err_help_span,
542
542
& format ! (
543
543
"consider changing this to be a mutable {pointer_desc}"
@@ -546,7 +546,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
546
546
Applicability :: MachineApplicable ,
547
547
) ;
548
548
} else if let Some ( x) = local_trait {
549
- err. span_suggestion (
549
+ err. span_suggestion_verbose (
550
550
x,
551
551
& format ! (
552
552
"consider changing that to be a mutable {pointer_desc}"
@@ -569,24 +569,15 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
569
569
err. span_label (
570
570
span,
571
571
format ! (
572
- "`{NAME}` is a `{SIGIL}` {DESC}, \
573
- so the data it refers to cannot be {ACTED_ON}",
574
- NAME = name,
575
- SIGIL = pointer_sigil,
576
- DESC = pointer_desc,
577
- ACTED_ON = acted_on
572
+ "`{name}` is a `{pointer_sigil}` {pointer_desc}, \
573
+ so the data it refers to cannot be {acted_on}",
578
574
) ,
579
575
) ;
580
576
}
581
577
_ => {
582
578
err. span_label (
583
579
span,
584
- format ! (
585
- "cannot {ACT} through `{SIGIL}` {DESC}" ,
586
- ACT = act,
587
- SIGIL = pointer_sigil,
588
- DESC = pointer_desc
589
- ) ,
580
+ format ! ( "cannot {act} through `{pointer_sigil}` {pointer_desc}" ) ,
590
581
) ;
591
582
}
592
583
}
@@ -605,13 +596,13 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
605
596
Some ( BorrowedContentSource :: OverloadedDeref ( ty) ) => {
606
597
err. help ( & format ! (
607
598
"trait `DerefMut` is required to modify through a dereference, \
608
- but it is not implemented for `{ty}`",
599
+ but it is not implemented for `{ty}`",
609
600
) ) ;
610
601
}
611
602
Some ( BorrowedContentSource :: OverloadedIndex ( ty) ) => {
612
603
err. help ( & format ! (
613
604
"trait `IndexMut` is required to modify indexed content, \
614
- but it is not implemented for `{ty}`",
605
+ but it is not implemented for `{ty}`",
615
606
) ) ;
616
607
self . suggest_map_index_mut_alternatives ( ty, & mut err, span) ;
617
608
}
@@ -620,7 +611,7 @@ impl<'a, 'tcx> MirBorrowckCtxt<'a, 'tcx> {
620
611
}
621
612
622
613
_ => {
623
- err. span_label ( span, format ! ( "cannot {ACT}" , ACT = act ) ) ;
614
+ err. span_label ( span, format ! ( "cannot {act}" ) ) ;
624
615
}
625
616
}
626
617
0 commit comments