Skip to content

Commit

Permalink
fix clippy::trait_duplication_in_bounds
Browse files Browse the repository at this point in the history
  • Loading branch information
hellow554 authored and phimuemue committed Jul 7, 2022
1 parent 6f3dbab commit c88736c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,7 @@ pub trait Itertools : Iterator {
/// ```
#[cfg(feature = "use_alloc")]
fn multi_cartesian_product(self) -> MultiProduct<<Self::Item as IntoIterator>::IntoIter>
where Self: Iterator + Sized,
where Self: Sized,
Self::Item: IntoIterator,
<Self::Item as IntoIterator>::IntoIter: Clone,
<Self::Item as IntoIterator>::Item: Clone
Expand Down

0 comments on commit c88736c

Please sign in to comment.