diff --git a/src/lib.rs b/src/lib.rs index 99a3d5c..07c8b57 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -345,8 +345,8 @@ impl Iterator for IntoIter { impl ParallelExtend for BitSet { fn par_extend(&mut self, par_iter: I) - where I: - IntoParallelIterator + where + I: IntoParallelIterator, { let list = par_iter .into_par_iter() @@ -369,7 +369,7 @@ impl ParallelExtend for BitSet { impl FromParallelIterator for BitSet { fn from_par_iter(par_iter: I) -> Self where - I: IntoParallelIterator + I: IntoParallelIterator, { let mut set = BitSet::new(); set.par_extend(par_iter);