about summary refs log tree commit diff
path: root/src/libstd/io/stdio.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-03-19 09:50:13 +0000
committerbors <bors@rust-lang.org>2015-03-19 09:50:13 +0000
commitd5408f376f93123a043845b69d467d4b7686ae86 (patch)
tree4f6e31db6cc3d40fbe8830a93e4b7f7267133839 /src/libstd/io/stdio.rs
parent0084f92302b3352372bfd14ebbf083bae695d16e (diff)
parent857035ade7577d23bac596eb43c34e6844ce0b74 (diff)
downloadrust-d5408f376f93123a043845b69d467d4b7686ae86.tar.gz
rust-d5408f376f93123a043845b69d467d4b7686ae86.zip
Auto merge of #23507 - jbcrail:fix-comment-spelling, r=alexcrichton
I corrected misspelled comments in several crates.
Diffstat (limited to 'src/libstd/io/stdio.rs')
-rw-r--r--src/libstd/io/stdio.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/stdio.rs b/src/libstd/io/stdio.rs
index 9b36408aa51..53f67766ea6 100644
--- a/src/libstd/io/stdio.rs
+++ b/src/libstd/io/stdio.rs
@@ -19,7 +19,7 @@ use io::{self, BufReader, LineWriter};
 use sync::{Arc, Mutex, MutexGuard};
 use sys::stdio;
 
-/// Stdout used by print! and println! macroses
+/// Stdout used by print! and println! macros
 thread_local! {
     static LOCAL_STDOUT: RefCell<Option<Box<Write + Send>>> = {
         RefCell::new(None)