diff options
| author | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 00:04:25 -0800 |
|---|---|---|
| committer | Alex Crichton <alex@alexcrichton.com> | 2014-12-21 09:27:36 -0800 |
| commit | 0191dce41dcb18253581bb28d1e09867e3b9d759 (patch) | |
| tree | 8acd3539a2f026ad7563ef3f5c4cd5688fbfc2f3 | |
| parent | 1dc5e6312fd13bd30fb93f7138845532fbdfe8cf (diff) | |
| parent | b4a065a3a097beb0777f6dc7081a492c3ddbcde9 (diff) | |
| download | rust-0191dce41dcb18253581bb28d1e09867e3b9d759.tar.gz rust-0191dce41dcb18253581bb28d1e09867e3b9d759.zip | |
rollup merge of #20077: shepmaster/stdin-typo
| -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 aa50597c816..36dd5492356 100644 --- a/src/libstd/io/stdio.rs +++ b/src/libstd/io/stdio.rs @@ -104,7 +104,7 @@ pub struct StdinReader { inner: Arc<Mutex<BufferedReader<StdReader>>>, } -/// A guard for exlusive access to `StdinReader`'s internal `BufferedReader`. +/// A guard for exclusive access to `StdinReader`'s internal `BufferedReader`. pub struct StdinReaderGuard<'a> { inner: MutexGuard<'a, BufferedReader<StdReader>>, } |
