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