Skip to content

Commit

Permalink
Fix rustfmt error (#645)
Browse files Browse the repository at this point in the history
  • Loading branch information
VianneyRuhlmann committed Sep 23, 2024
1 parent 13eac56 commit b3098a1
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 b3098a1

Please sign in to comment.