Remove unnecessary Hint suffix on InlayKind variants

This commit is contained in:
Lukas Wirth 2023-01-14 12:20:12 +01:00
parent 60075a6625
commit f2444b2a40
13 changed files with 87 additions and 95 deletions

View file

@ -32,7 +32,7 @@ pub(super) fn hints(
let t = ty.amp_token()?;
acc.push(InlayHint {
range: t.text_range(),
kind: InlayKind::LifetimeHint,
kind: InlayKind::Lifetime,
label: "'static".to_owned().into(),
});
}