]> git.lizzy.rs Git - rust.git/commitdiff
Closes #12386. Removed 'pub mod' doc-comments in std::io's mod.rs file. Added summary...
authorzslayton <zack.slayton@gmail.com>
Sun, 23 Feb 2014 20:48:26 +0000 (15:48 -0500)
committerzslayton <zack.slayton@gmail.com>
Sun, 23 Feb 2014 20:48:26 +0000 (15:48 -0500)
src/libstd/io/mod.rs
src/libstd/io/stdio.rs
src/libstd/io/test.rs
src/libstd/io/util.rs

index 91a8d59932689b2dfcb6212e6f0be997b5ff17ef..8678ee5f00bdc9de2a82e4cdce9e8c1a0ef767b5 100644 (file)
                          LineBufferedWriter};
 pub use self::comm_adapters::{PortReader, ChanWriter};
 
-/// Various utility functions useful for writing I/O tests
 pub mod test;
 
-/// Synchronous, non-blocking filesystem operations.
 pub mod fs;
 
-/// Synchronous, in-memory I/O.
 pub mod pipe;
 
-/// Child process management.
 pub mod process;
 
-/// Synchronous, non-blocking network I/O.
 pub mod net;
 
-/// Readers and Writers for memory buffers and strings.
 mod mem;
 
-/// Non-blocking access to stdin, stdout, stderr
 pub mod stdio;
 
-/// Implementations for Result
 mod result;
 
-/// Extension traits
 pub mod extensions;
 
-/// Basic Timer
 pub mod timer;
 
-/// Buffered I/O wrappers
 mod buffered;
 
-/// Signal handling
 pub mod signal;
 
-/// Utility implementations of Reader and Writer
 pub mod util;
 
-/// Adapatation of Chan/Port types to a Writer/Reader type.
 mod comm_adapters;
 
 /// The default buffer size for various I/O operations
index e1f0d87e130b6b3f9476b333403d79967d265009..b125fd69c5aec46a1203093b4dd7f369bde8f858 100644 (file)
@@ -8,12 +8,12 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-/*!
+/*! Non-blocking access to stdin, stdout, and stderr.
 
-This modules provides bindings to the local event loop's TTY interface, using it
-to have synchronous, but non-blocking versions of stdio. These handles can be
-inspected for information about terminal dimensions or related information
-about the stream or terminal that it is attached to.
+This module provides bindings to the local event loop's TTY interface, using it
+to offer synchronous but non-blocking versions of stdio. These handles can be
+inspected for information about terminal dimensions or for related information
+about the stream or terminal to which it is attached.
 
 # Example
 
index 04ecb479060c4e46f68acfbe7782f64b7c4646a5..d03e5e75c8ee70847133038e66f63dda1670f771 100644 (file)
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+/*! Various utility functions useful for writing I/O tests */
+
 #[macro_escape];
 
 use os;
index acaffd00665bf63a4797f832a02f855da6c763ee..d6d1de00d86e1266f9d794c2694de96ddd8844ab 100644 (file)
@@ -8,6 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+/*! Utility implementations of Reader and Writer */
+
 use prelude::*;
 use cmp;
 use io;