Skip to content

Commit 55f2830

Browse files
Owen-CH-Leungjswrenn
authored andcommitted
Run cargo fmt to fix the CI error
1 parent 6c400e0 commit 55f2830

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

benches/bench1.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use criterion::{black_box, criterion_group, criterion_main, Criterion};
22
use itertools::free::cloned;
3-
use itertools::{EitherOrBoth, iproduct};
43
use itertools::Itertools;
4+
use itertools::{iproduct, EitherOrBoth};
55

66
use std::cmp;
77
use std::iter::repeat;

src/zip_longest.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ where
5656
#[inline]
5757
fn fold<B, F>(self, mut acc: B, mut f: F) -> B
5858
where
59-
Self: Sized, F: FnMut(B, Self::Item) -> B
59+
Self: Sized,
60+
F: FnMut(B, Self::Item) -> B,
6061
{
6162
let ZipLongest { mut a, mut b } = self;
6263

0 commit comments

Comments
 (0)