From e9c30ebaaf1e8d83ecfb6720b98c1429e3723146 Mon Sep 17 00:00:00 2001 From: a_m0d Date: Tue, 14 Jan 2014 22:13:54 -0500 Subject: [PATCH] Mark LineIterator as public so its docs get generated. --- src/libstd/io/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs index 2e33bef380c..61e054fa255 100644 --- a/src/libstd/io/mod.rs +++ b/src/libstd/io/mod.rs @@ -1058,7 +1058,7 @@ impl 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, }