automatic cargo CI changes

This commit is contained in:
PlexSheep 2025-03-03 10:42:42 +00:00 committed by github-actions[bot]
parent fd164fc978
commit ad9b0197c8
2 changed files with 2 additions and 2 deletions

View file

@ -349,7 +349,7 @@ impl<'wl, WL: WordList> GameBuilder<'wl, WL> {
}
}
impl<'wl, WL: WordList> Display for Game<'wl, WL> {
impl<WL: WordList> 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

View file

@ -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<WL: WordList> Default for Summary<'_, WL> {
fn default() -> Self {
Self::new()
}