From f86064e3c523db18defb9763f57ac078d91a0ad5 Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Fri, 6 Sep 2024 12:17:24 -0700 Subject: [PATCH] Fix elided-named-lifetimes --- src/data.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data.rs b/src/data.rs index 4c3fbe24f..97ef62ec9 100644 --- a/src/data.rs +++ b/src/data.rs @@ -151,7 +151,7 @@ impl Data { pub(crate) fn subteams_of<'a>( &'a self, team_name: &'a str, - ) -> impl Iterator + 'a { + ) -> impl Iterator + 'a { self.team(team_name).into_iter().flat_map(move |team| { self.teams() .filter(move |maybe_subteam| team.is_parent_of(self, maybe_subteam))