Skip to content

Commit

Permalink
Merge branch 'main' into vianney/data-pipeline/fix-flaky-test
Browse files Browse the repository at this point in the history
  • Loading branch information
VianneyRuhlmann authored Sep 23, 2024
2 parents b0f22a6 + b3098a1 commit f291acc
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion profiling/src/collections/string_table/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,10 @@ impl StringTableIter {
}

impl LendingIterator for StringTableIter {
type Item<'a> = &'a str where Self: 'a;
type Item<'a>
= &'a str
where
Self: 'a;

fn next(&mut self) -> Option<Self::Item<'_>> {
self.iter.next()
Expand Down

0 comments on commit f291acc

Please sign in to comment.