Skip to content

Commit 085fdda

Browse files
committed
core::iter: break long lines
1 parent 84654fa commit 085fdda

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/libcore/iter/iterator.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ use ops::{Add, FnMut, Mul};
1717
use option::Option::{self, Some, None};
1818
use marker::Sized;
1919

20-
use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, FlatMap, Fuse, Inspect, Map, Peekable, Scan, Skip, SkipWhile, Take, TakeWhile, Rev, Zip};
20+
use super::{Chain, Cycle, Cloned, Enumerate, Filter, FilterMap, FlatMap, Fuse,
21+
Inspect, Map, Peekable, Scan, Skip, SkipWhile, Take, TakeWhile, Rev,
22+
Zip};
2123
use super::ChainState;
22-
use super::{DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator, IntoIterator};
24+
use super::{DoubleEndedIterator, ExactSizeIterator, Extend, FromIterator,
25+
IntoIterator};
2326

2427
fn _assert_is_object_safe(_: &Iterator<Item=()>) {}
2528

0 commit comments

Comments
 (0)