about summary refs log tree commit diff
path: root/src/libnative/task.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-06-10 15:17:01 -0700
committerbors <bors@rust-lang.org>2014-06-10 15:17:01 -0700
commitb1302f9c4f6619bf83fff39b305b990d8f628eb7 (patch)
tree00429f512aed143f46f4b0ea8a23c2028db2c123 /src/libnative/task.rs
parent7f777a5ba49785a74e5365e9897ddf4c02ea8519 (diff)
parentc2c99463720e758d5aa0bdcea19dc5b3dd67292c (diff)
downloadrust-b1302f9c4f6619bf83fff39b305b990d8f628eb7.tar.gz
rust-b1302f9c4f6619bf83fff39b305b990d8f628eb7.zip
auto merge of #14764 : jbcrail/rust/fix-more-comments, r=alexcrichton
Diffstat (limited to 'src/libnative/task.rs')
-rw-r--r--src/libnative/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libnative/task.rs b/src/libnative/task.rs
index f16c41d4e28..b073c2c7fbf 100644
--- a/src/libnative/task.rs
+++ b/src/libnative/task.rs
@@ -166,7 +166,7 @@ impl rt::Runtime for Ops {
     //
     // On a mildly unrelated note, it should also be pointed out that OS
     // condition variables are susceptible to spurious wakeups, which we need to
-    // be ready for. In order to accomodate for this fact, we have an extra
+    // be ready for. In order to accommodate for this fact, we have an extra
     // `awoken` field which indicates whether we were actually woken up via some
     // invocation of `reawaken`. This flag is only ever accessed inside the
     // lock, so there's no need to make it atomic.