diff --git a/src/game/mod.rs b/src/game/mod.rs index ead7ee9..9536682 100644 --- a/src/game/mod.rs +++ b/src/game/mod.rs @@ -349,7 +349,7 @@ impl<'wl, WL: WordList> GameBuilder<'wl, WL> { } } -impl<'wl, WL: WordList> Display for Game<'wl, WL> { +impl Display for Game<'_, WL> { fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { // TODO: make this actually useful // TODO: make this actually fancy diff --git a/src/game/summary.rs b/src/game/summary.rs index 778cf3b..96135d1 100644 --- a/src/game/summary.rs +++ b/src/game/summary.rs @@ -6,7 +6,7 @@ pub struct Summary<'wl, WL: WordList> { data: Vec<&'wl Game<'wl, WL>>, } -impl<'wl, WL: WordList> Default for Summary<'wl, WL> { +impl Default for Summary<'_, WL> { fn default() -> Self { Self::new() }