about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 14:57:13 -0700
committerTim Chevalier <chevalier@alum.wellesley.edu>2012-10-11 16:00:30 -0700
commit27490769cee7d06e5514786a4728260ab4dcc36b (patch)
tree35e621f002228dbb3612561c93bce9ab052bbcb0 /src/libcore
parentfc4da29b4f5e5b5eb4a5c47c724edde399d28145 (diff)
Update FIXME number
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/task.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libcore/task.rs b/src/libcore/task.rs
index 8d7791d18d9..1bb23203007 100644
--- a/src/libcore/task.rs
+++ b/src/libcore/task.rs
@@ -217,7 +217,7 @@ pub type TaskOpts = {
 // sidestep that whole issue by making builders uncopyable and making
 // the run function move them in.
 
-// FIXME (#2585): Replace the 'consumed' bit with move mode on self
+// FIXME (#3724): Replace the 'consumed' bit with move mode on self
 pub enum TaskBuilder = {
     opts: TaskOpts,
     gen_body: fn@(v: fn~()) -> fn~(),
@@ -349,7 +349,7 @@ impl TaskBuilder {
      * Fails if a future_result was already set for this task.
      */
     fn future_result(blk: fn(v: future::Future<TaskResult>)) -> TaskBuilder {
-        // FIXME (#1087, #1857): Once linked failure and notification are
+        // FIXME (#3725): Once linked failure and notification are
         // handled in the library, I can imagine implementing this by just
         // registering an arbitrary number of task::on_exit handlers and
         // sending out messages.
@@ -758,8 +758,8 @@ pub unsafe fn atomically<U>(f: fn() -> U) -> U {
 fn test_cant_dup_task_builder() {
     let b = task().unlinked();
     do b.spawn { }
-    // FIXME(#2585): For now, this is a -runtime- failure, because we haven't
-    // got modes on self. When 2585 is fixed, this test should fail to compile
+    // FIXME(#3724): For now, this is a -runtime- failure, because we haven't
+    // got move mode on self. When 3724 is fixed, this test should fail to compile
     // instead, and should go in tests/compile-fail.
     do b.spawn { } // b should have been consumed by the previous call
 }