Skip to content

Commit 55d1296

Browse files
committed
pacify tidy
1 parent 5530858 commit 55d1296

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

library/core/src/iter/adapters/fuse.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1+
use super::InPlaceIterable;
12
use crate::intrinsics;
23
use crate::iter::adapters::zip::try_get_unchecked;
34
use crate::iter::TrustedRandomAccess;
45
use crate::iter::{DoubleEndedIterator, ExactSizeIterator, FusedIterator, Iterator};
5-
use crate::ops::Try;
66
use crate::iter::adapters::SourceIter;
7-
use super::InPlaceIterable;
7+
use crate::ops::Try;
88

99
/// An iterator that yields `None` forever after the underlying iterator
1010
/// yields `None` once.
@@ -522,8 +522,8 @@ where
522522

523523
#[unstable(issue = "none", feature = "inplace_iteration")]
524524
unsafe impl<S: Iterator, I: FusedIterator> SourceIter for Fuse<I>
525-
where
526-
I: SourceIter<Source = S>,
525+
where
526+
I: SourceIter<Source = S>,
527527
{
528528
type Source = S;
529529

library/core/src/iter/adapters/mod.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2095,9 +2095,9 @@ where
20952095

20962096
#[unstable(issue = "none", feature = "inplace_iteration")]
20972097
unsafe impl<S: Iterator, P, I: Iterator> SourceIter for TakeWhile<I, P>
2098-
where
2099-
P: FnMut(&I::Item) -> bool,
2100-
I: SourceIter<Source = S>,
2098+
where
2099+
P: FnMut(&I::Item) -> bool,
2100+
I: SourceIter<Source = S>,
21012101
{
21022102
type Source = S;
21032103

0 commit comments

Comments
 (0)