1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-08-01 13:37:48 +00:00

fmt: iter::Peekable changes

This commit is contained in:
Michael Gehring 2015-02-06 14:09:01 +01:00
parent 9c75b2ddab
commit 8021b491f6

View file

@ -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<Line, FileLines<'a>>,
lines : Peekable<FileLines<'a>>,
next_mail : bool,
opts : &'a FmtOptions,
}