1
Fork 0

Make ; suggestions inline

This commit is contained in:
Esteban Küber 2024-07-12 03:22:32 +00:00
parent b6f518877f
commit 71f16bdb32
12 changed files with 32 additions and 170 deletions

View file

@ -1215,14 +1215,14 @@ pub(crate) enum ExpectedSemiSugg {
parse_sugg_change_this_to_semi,
code = ";",
applicability = "machine-applicable",
style = "verbose"
style = "short"
)]
ChangeToSemi(#[primary_span] Span),
#[suggestion(
parse_sugg_add_semi,
style = "verbose",
code = ";",
applicability = "machine-applicable"
applicability = "machine-applicable",
style = "short"
)]
AddSemi(#[primary_span] Span),
}