Mark LineIterator as public so its docs get generated.

This commit is contained in:
a_m0d 2014-01-14 22:13:54 -05:00
parent dd8b011319
commit e9c30ebaaf

View File

@ -1058,7 +1058,7 @@ impl<T: Reader + Writer> Stream for T {}
/// Raises the same conditions as the `read` method except for `EndOfFile`
/// which is swallowed.
/// Iteration yields `None` if the condition is handled.
struct LineIterator<'r, T> {
pub struct LineIterator<'r, T> {
priv buffer: &'r mut T,
}