Skip to content

Commit 98aec15

Browse files
authored
Rollup merge of rust-lang#81840 - ibraheemdev:patch-1, r=dtolnay
fix formatting of std::iter::Map
2 parents b9045fa + 1dac9a1 commit 98aec15

File tree

1 file changed

+1
-0
lines changed
  • library/core/src/iter/adapters

1 file changed

+1
-0
lines changed

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

+1
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ pub struct Map<I, F> {
6060
iter: I,
6161
f: F,
6262
}
63+
6364
impl<I, F> Map<I, F> {
6465
pub(in crate::iter) fn new(iter: I, f: F) -> Map<I, F> {
6566
Map { iter, f }

0 commit comments

Comments
 (0)