diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2015-12-23 18:09:12 -0500 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2015-12-23 18:09:12 -0500 |
| commit | 1b68a357fd0d2167c0bc53af5b73ddf807c2362a (patch) | |
| tree | 154a381330a00b361a1acc1aee063be20d5c3e96 | |
| parent | 2651b4a5640349ea25f9cfc34979e34a167ecd8b (diff) | |
| parent | 97547e28681f38d4425093a6078edc7c118871b8 (diff) | |
| download | rust-1b68a357fd0d2167c0bc53af5b73ddf807c2362a.tar.gz rust-1b68a357fd0d2167c0bc53af5b73ddf807c2362a.zip | |
Rollup merge of #30537 - tshepang:make-visible, r=Gankro
| -rw-r--r-- | src/libstd/io/stdio.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs index 985dbdd895f..120e56d8079 100644 --- a/src/libstd/io/stdio.rs +++ b/src/libstd/io/stdio.rs @@ -252,7 +252,7 @@ impl Stdin { /// /// - 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 + /// 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(&self, buf: &mut String) -> io::Result<usize> { |
