about summary refs log tree commit diff
path: root/src/libstd/io/stdio.rs
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2015-03-19 00:48:08 -0400
committerJoseph Crail <jbcrail@gmail.com>2015-03-19 00:48:08 -0400
commit857035ade7577d23bac596eb43c34e6844ce0b74 (patch)
treed525325183421024290c559a877541022a684f0d /src/libstd/io/stdio.rs
parent12cb7c6a2847959460ecac75b2c983d071585472 (diff)
downloadrust-857035ade7577d23bac596eb43c34e6844ce0b74.tar.gz
rust-857035ade7577d23bac596eb43c34e6844ce0b74.zip
Fix spelling errors in comments.
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 75d047d5c9c..f55a825a137 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)