parsers: clippy

Signed-off-by: pep <pep@bouah.net>
This commit is contained in:
pep 2025-11-01 15:55:09 +01:00
commit e95f884e44
5 changed files with 8 additions and 7 deletions

View file

@ -71,7 +71,7 @@ impl DerefMut for Lang {
}
impl fmt::Display for Lang {
fn fmt<'f>(&self, f: &'f mut fmt::Formatter) -> fmt::Result {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
fmt::Display::fmt(&self.0, f)
}
}