Fix lint message
This commit is contained in:
parent
6aa06b757d
commit
4166b7dcfe
@ -23,7 +23,7 @@ pub(super) fn check_fn<'tcx>(cx: &LateContext<'_>, kind: &'tcx FnKind<'_>, body:
|
||||
if let Some(gen_span) = generics.span_for_param_suggestion() {
|
||||
diag.span_suggestion_with_style(
|
||||
gen_span,
|
||||
"add a type paremeter, `{}`: `{}`",
|
||||
"add a type paremeter",
|
||||
format!(", {next_letter}: {}", ¶m.name.ident().as_str()[5..]),
|
||||
rustc_errors::Applicability::MaybeIncorrect,
|
||||
rustc_errors::SuggestionStyle::ShowAlways,
|
||||
|
@ -16,7 +16,7 @@ error: '`impl Trait` used as a function parameter'
|
||||
LL | pub fn c<C: Trait>(_: C, _: impl Trait) {}
|
||||
| ^^^^^^^^^^
|
||||
|
|
||||
help: add a type paremeter, `{}`: `{}`
|
||||
help: add a type paremeter
|
||||
|
|
||||
LL | pub fn c<C: Trait, T: Trait>(_: C, _: impl Trait) {}
|
||||
| ++++++++++
|
||||
|
Loading…
Reference in New Issue
Block a user