From 564d62ccbdc8c750820e6e6b6c842aba47b69800 Mon Sep 17 00:00:00 2001 From: Luke Else Date: Fri, 22 Nov 2024 11:08:40 +0000 Subject: [PATCH] fixed fmt warning --- src/solutions/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/solutions/mod.rs b/src/solutions/mod.rs index 368f621..e0584a5 100644 --- a/src/solutions/mod.rs +++ b/src/solutions/mod.rs @@ -33,14 +33,14 @@ pub trait Solution: Send + Sync { // returning it as a: ///``` /// OK(Box::new(ans)) - /// ``` + /// ``` fn part1(&self, input: &mut Vec) -> Result, Box>; // Insert your solution for part two in here, // returning it as a: ///``` /// OK(Box::new(ans)) - /// ``` + /// ``` fn part2(&self, input: &mut Vec) -> Result, Box>; // Returns the day that is currently being run