From 24f895d68d9a080b8b9b3eec27f144f66a0be04b Mon Sep 17 00:00:00 2001 From: Ed Page Date: Mon, 2 Dec 2024 11:00:50 -0600 Subject: [PATCH] style: Make clippy happy --- src/commit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commit.rs b/src/commit.rs index d084c89..e8ef3db 100644 --- a/src/commit.rs +++ b/src/commit.rs @@ -183,7 +183,7 @@ impl<'a> Footer<'a> { } } -impl<'a> fmt::Display for Footer<'a> { +impl fmt::Display for Footer<'_> { fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { let Self { token, sep, value } = self; write!(f, "{token}{sep}{value}")