Skip to content

Commit

Permalink
Remove unnecessary into_iter()
Browse files Browse the repository at this point in the history
  • Loading branch information
TedDriggs committed Jan 20, 2024
1 parent 2778cae commit b61db4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion derive_builder_core/src/change_span.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ pub(crate) fn change_span(tokens: TokenStream, span: Span) -> TokenStream {
}
}
}
FromIterator::from_iter(result.into_iter())
FromIterator::from_iter(result)
}

0 comments on commit b61db4d

Please sign in to comment.