From 8021b491f6799f7555d2765d573f71453c15e7ca Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Fri, 6 Feb 2015 14:09:01 +0100 Subject: [PATCH] fmt: iter::Peekable changes --- src/fmt/parasplit.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fmt/parasplit.rs b/src/fmt/parasplit.rs index 4efc623f5..bfde0ecfd 100644 --- a/src/fmt/parasplit.rs +++ b/src/fmt/parasplit.rs @@ -213,7 +213,7 @@ pub struct Paragraph { // an iterator producing a stream of paragraphs from a stream of lines // given a set of options. pub struct ParagraphStream<'a> { - lines : Peekable>, + lines : Peekable>, next_mail : bool, opts : &'a FmtOptions, }