From 1dac9a1d78bb4948f4268c20868030ae1dab4656 Mon Sep 17 00:00:00 2001 From: Ibraheem Ahmed Date: Sat, 6 Feb 2021 15:47:12 -0500 Subject: [PATCH] fix formatting of std::iter::Map --- library/core/src/iter/adapters/map.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/library/core/src/iter/adapters/map.rs b/library/core/src/iter/adapters/map.rs index 12673806ec4..f238baf743c 100644 --- a/library/core/src/iter/adapters/map.rs +++ b/library/core/src/iter/adapters/map.rs @@ -60,6 +60,7 @@ pub struct Map { iter: I, f: F, } + impl Map { pub(in crate::iter) fn new(iter: I, f: F) -> Map { Map { iter, f } -- 2.44.0