about summary refs log tree commit diff
path: root/src/libcore/task.rs
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-02-01 16:49:36 -0800
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-02-01 16:49:57 -0800
commit49cb3fc7dfd2a8ee7f35aaa884da8f710cd4a94a (patch)
treec42edd27f47c8a78cc212391c093992d3bde7f4b /src/libcore/task.rs
parent4eb92d41775e633fbc177b1dd163a799260835a8 (diff)
downloadrust-49cb3fc7dfd2a8ee7f35aaa884da8f710cd4a94a.tar.gz
rust-49cb3fc7dfd2a8ee7f35aaa884da8f710cd4a94a.zip
Remove remaining references to option::t outside option itself
Diffstat (limited to 'src/libcore/task.rs')
-rw-r--r--src/libcore/task.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/task.rs b/src/libcore/task.rs
index 9bdc9fb006d..3b422c994e8 100644
--- a/src/libcore/task.rs
+++ b/src/libcore/task.rs
@@ -122,7 +122,7 @@ fn spawn(+f: fn~()) -> task {
 }
 
 fn spawn_inner(-f: fn~(),
-            notify: option::t<comm::chan<task_notification>>) -> task unsafe {
+            notify: option<comm::chan<task_notification>>) -> task unsafe {
     let closure: *rust_closure = unsafe::reinterpret_cast(ptr::addr_of(f));
     #debug("spawn: closure={%x,%x}", (*closure).fnptr, (*closure).envptr);
     let id = rustrt::new_task();