about summary refs log tree commit diff
path: root/src/libstd/io/timer.rs
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-05-22 22:50:31 +1000
committerHuon Wilson <dbau.pp+github@gmail.com>2014-05-22 22:55:37 +1000
commit37bd466e5898da17f474628461abdd023c4d6a4d (patch)
tree11d21ca8cf5667aa3d6bb18c11333f200e95e90c /src/libstd/io/timer.rs
parente7e5e9ce962d8243edd418c6f6d549d5bb62a227 (diff)
downloadrust-37bd466e5898da17f474628461abdd023c4d6a4d.tar.gz
rust-37bd466e5898da17f474628461abdd023c4d6a4d.zip
Spelling/doc formatting fixes.
Diffstat (limited to 'src/libstd/io/timer.rs')
-rw-r--r--src/libstd/io/timer.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/timer.rs b/src/libstd/io/timer.rs
index 5565918ef85..2df6062b7ac 100644
--- a/src/libstd/io/timer.rs
+++ b/src/libstd/io/timer.rs
@@ -52,7 +52,7 @@ use rt::rtio::{IoFactory, LocalIo, RtioTimer};
 /// # }
 /// ```
 ///
-/// If only sleeping is necessary, then a convenience api is provided through
+/// If only sleeping is necessary, then a convenience API is provided through
 /// the `io::timer` module.
 ///
 /// ```