Skip to content

Commit e9c30eb

Browse files
committed
Mark LineIterator as public so its docs get generated.
1 parent dd8b011 commit e9c30eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/io/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1058,7 +1058,7 @@ impl<T: Reader + Writer> Stream for T {}
10581058
/// Raises the same conditions as the `read` method except for `EndOfFile`
10591059
/// which is swallowed.
10601060
/// Iteration yields `None` if the condition is handled.
1061-
struct LineIterator<'r, T> {
1061+
pub struct LineIterator<'r, T> {
10621062
priv buffer: &'r mut T,
10631063
}
10641064

0 commit comments

Comments
 (0)