]> git.lizzy.rs Git - rust.git/blobdiff - src/libstd/io/stdio.rs
Fix spelling errors in comments.
[rust.git] / src / libstd / io / stdio.rs
index 75d047d5c9c85dd3bdb4d346216b42bceda2cbbf..f55a825a1370a09431d979b861ac44a3f7dce3f3 100644 (file)
@@ -19,7 +19,7 @@
 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)