about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-15 05:01:47 -0800
committerbors <bors@rust-lang.org>2014-01-15 05:01:47 -0800
commit180ac0cc07dbd8b4bbd91ed1b3ef8eaca6c87341 (patch)
treee7905c3d759292c966e8758bbcadd88dddcf5758 /src/libstd
parentb549b08ca384728beeffc82190a59ff883df427e (diff)
parente9c30ebaaf1e8d83ecfb6720b98c1429e3723146 (diff)
downloadrust-180ac0cc07dbd8b4bbd91ed1b3ef8eaca6c87341.tar.gz
rust-180ac0cc07dbd8b4bbd91ed1b3ef8eaca6c87341.zip
auto merge of #11556 : am0d/rust/docs, r=huonw
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
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<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,
 }