about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-06-30 15:37:45 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-06-30 15:37:45 -0400
commit825e48fadf4dfe4a5523b3263a276bf066ad299d (patch)
tree912df3aaa8dd1fcb2cb252d205e59fd4cb5a1137 /src/libstd
parentcf1c5b22d84e0c517920ff1483199a1fdf2a8d06 (diff)
parentbc1b43cd0bbd14c72aebb81f3496cbe287241f7c (diff)
downloadrust-825e48fadf4dfe4a5523b3263a276bf066ad299d.tar.gz
rust-825e48fadf4dfe4a5523b3263a276bf066ad299d.zip
Rollup merge of #26627 - tshepang:stdin-example, r=steveklabnik
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/io/stdio.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs
index 9fd48f67950..2a64d0f6e8c 100644
--- a/src/libstd/io/stdio.rs
+++ b/src/libstd/io/stdio.rs
@@ -204,6 +204,28 @@ impl Stdin {
     ///
     /// For detailed semantics of this method, see the documentation on
     /// `BufRead::read_line`.
+    ///
+    /// # Examples
+    ///
+    /// ```no_run
+    /// use std::io;
+    ///
+    /// let mut input = String::new();
+    /// match io::stdin().read_line(&mut input) {
+    ///     Ok(n) => {
+    ///         println!("{} bytes read", n);
+    ///         println!("{}", input);
+    ///     }
+    ///     Err(error) => println!("error: {}", error),
+    /// }
+    /// ```
+    ///
+    /// You can run the example one of two ways:
+    ///
+    /// - Pipe some text to it, e.g. `printf foo | path/to/executable`
+    /// - Give it text interactively by running the executable directly,
+    //    in which case it will wait for the Enter key to be pressed before
+    ///   continuing
     #[stable(feature = "rust1", since = "1.0.0")]
     pub fn read_line(&mut self, buf: &mut String) -> io::Result<usize> {
         self.lock().read_line(buf)