fix formatting of std::iter::Map

This commit is contained in:
Ibraheem Ahmed 2021-02-06 15:47:12 -05:00 committed by ibraheemdev
parent 37d067f5d7
commit 1dac9a1d78

View File

@ -60,6 +60,7 @@ pub struct Map<I, F> {
iter: I,
f: F,
}
impl<I, F> Map<I, F> {
pub(in crate::iter) fn new(iter: I, f: F) -> Map<I, F> {
Map { iter, f }