Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/libstd/io/comm_adapters.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ pub struct PortReader {
}

impl PortReader {
pub fn new(port: Port<~[u8]>) -> PortReader<P> {
pub fn new(port: Port<~[u8]>) -> PortReader {
PortReader {
buf: None,
pos: 0,
Expand Down Expand Up @@ -94,7 +94,7 @@ pub struct ChanWriter {
}

impl ChanWriter {
pub fn new(chan: C) -> ChanWriter<C> {
pub fn new(chan: Chan<~[u8]>) -> ChanWriter {
ChanWriter { chan: chan }
}
}
Expand Down
3 changes: 3 additions & 0 deletions src/libstd/io/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,9 @@ pub mod signal;
/// Utility implementations of Reader and Writer
pub mod util;

/// Adapatation of Chan/Port types to a Writer/Reader type.
pub mod comm_adapters;

/// The default buffer size for various I/O operations
static DEFAULT_BUF_SIZE: uint = 1024 * 64;

Expand Down