about summary refs log tree commit diff
path: root/src/libstd/rt
diff options
context:
space:
mode:
authorHuon Wilson <dbau.pp+github@gmail.com>2014-02-17 22:53:45 +1100
committerHuon Wilson <dbau.pp+github@gmail.com>2014-02-18 08:05:35 +1100
commit6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0 (patch)
tree67b79727570ea14a3b0520b5562aa9e1fba154f9 /src/libstd/rt
parentc8489069b43191c5298f17430933b3b88fb79c3c (diff)
downloadrust-6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0.tar.gz
rust-6555b04dd2fbcd18c8fa8beb2bebc4b81febc6b0.zip
Spellcheck library docs.
Diffstat (limited to 'src/libstd/rt')
-rw-r--r--src/libstd/rt/task.rs2
-rw-r--r--src/libstd/rt/unwind.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/rt/task.rs b/src/libstd/rt/task.rs
index 0719523af77..72ba98eab4f 100644
--- a/src/libstd/rt/task.rs
+++ b/src/libstd/rt/task.rs
@@ -254,7 +254,7 @@ impl Task {
         ops.deschedule(amt, self, f)
     }
 
-    /// Wakes up a previously blocked task, optionally specifiying whether the
+    /// Wakes up a previously blocked task, optionally specifying whether the
     /// current task can accept a change in scheduling. This function can only
     /// be called on tasks that were previously blocked in `deschedule`.
     pub fn reawaken(mut ~self) {
diff --git a/src/libstd/rt/unwind.rs b/src/libstd/rt/unwind.rs
index 5718a27bfef..ef8bd94c897 100644
--- a/src/libstd/rt/unwind.rs
+++ b/src/libstd/rt/unwind.rs
@@ -400,7 +400,7 @@ pub fn begin_unwind_raw(msg: *u8, file: *u8, line: uint) -> ! {
 /// The entry point for unwinding with a formatted message.
 ///
 /// This is designed to reduce the amount of code required at the call
-/// site as much as possible (so that `fail!()` has as low an implact
+/// site as much as possible (so that `fail!()` has as low an impact
 /// on (e.g.) the inlining of other functions as possible), by moving
 /// the actual formatting into this shared place.
 #[inline(never)] #[cold]