diff options
| author | trevyn <230691+trevyn@users.noreply.github.com> | 2024-02-02 15:16:05 -0800 |
|---|---|---|
| committer | trevyn <230691+trevyn@users.noreply.github.com> | 2024-02-02 15:16:05 -0800 |
| commit | ef37dcb7dbb444751b825adb55f2246b4fa3a52b (patch) | |
| tree | f4e58aa36dc571adaa78647f55796801b4bdae41 /compiler/rustc_parse/src/parser/generics.rs | |
| parent | bf3c6c5bed498f41ad815641319a1ad9bcecb8e8 (diff) | |
| download | rust-ef37dcb7dbb444751b825adb55f2246b4fa3a52b.tar.gz rust-ef37dcb7dbb444751b825adb55f2246b4fa3a52b.zip | |
Remove unnecessary `.to_string()`/`.as_str()`s
Diffstat (limited to 'compiler/rustc_parse/src/parser/generics.rs')
| -rw-r--r-- | compiler/rustc_parse/src/parser/generics.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/parser/generics.rs b/compiler/rustc_parse/src/parser/generics.rs index 48cf04f7790..e059e707491 100644 --- a/compiler/rustc_parse/src/parser/generics.rs +++ b/compiler/rustc_parse/src/parser/generics.rs @@ -148,7 +148,7 @@ impl<'a> Parser<'a> { .with_span_suggestion_verbose( mistyped_const_ident.span, "use the `const` keyword", - kw::Const.as_str(), + kw::Const, Applicability::MachineApplicable, ) .emit(); |
