From 4e68b1ba7876b90302f4d528c68bb913ba41266d Mon Sep 17 00:00:00 2001 From: Hanno Braun Date: Thu, 13 Feb 2025 19:06:16 +0100 Subject: [PATCH] Simplify --- experiments/2024-12-09/src/operation/traits.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/experiments/2024-12-09/src/operation/traits.rs b/experiments/2024-12-09/src/operation/traits.rs index f58a8dd76..2ef33f2ce 100644 --- a/experiments/2024-12-09/src/operation/traits.rs +++ b/experiments/2024-12-09/src/operation/traits.rs @@ -26,7 +26,7 @@ pub struct OperationDisplay<'r> { } impl fmt::Display for OperationDisplay<'_> { - fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { self.op.display(f) } }