Skip to content

Commit aadba4e

Browse files
committed
use str-literal instead of char-literal before converting to String since str to String conversion is cheaper.
See rust-lang#73462
1 parent 2935d29 commit aadba4e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/librustc_parse/parser/item.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1403,7 +1403,7 @@ impl<'a> Parser<'a> {
14031403
};
14041404
err.multipart_suggestion(
14051405
"change the delimiters to curly braces",
1406-
vec![(open, "{".to_string()), (close, '}'.to_string())],
1406+
vec![(open, "{".to_string()), (close, "}".to_string())],
14071407
Applicability::MaybeIncorrect,
14081408
);
14091409
} else {
@@ -1417,7 +1417,7 @@ impl<'a> Parser<'a> {
14171417
err.span_suggestion(
14181418
span.shrink_to_hi(),
14191419
"add a semicolon",
1420-
';'.to_string(),
1420+
";".to_string(),
14211421
Applicability::MaybeIncorrect,
14221422
);
14231423
err.emit();

src/librustc_typeck/check/method/suggest.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,8 @@ impl<'a, 'tcx> FnCtxt<'a, 'tcx> {
468468
item_name,
469469
),
470470
vec![
471-
(expr_span.shrink_to_lo(), '('.to_string()),
472-
(expr_span.shrink_to_hi(), ')'.to_string()),
471+
(expr_span.shrink_to_lo(), "(".to_string()),
472+
(expr_span.shrink_to_hi(), ")".to_string()),
473473
],
474474
Applicability::MachineApplicable,
475475
);

src/librustc_typeck/collect.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ fn get_new_lifetime_name<'tcx>(
464464

465465
let a_to_z_repeat_n = |n| {
466466
(b'a'..=b'z').map(move |c| {
467-
let mut s = '\''.to_string();
467+
let mut s = "'".to_string();
468468
s.extend(std::iter::repeat(char::from(c)).take(n));
469469
s
470470
})

0 commit comments

Comments
 (0)