From cd17ba4c1236af71594291646b586b1bc0b415d9 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Mon, 10 Nov 2014 17:04:33 -0500 Subject: [PATCH] note the intent of reforming task spawning --- src/libstd/task.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libstd/task.rs b/src/libstd/task.rs index c79b8715c06..f0bb8a0f4bc 100644 --- a/src/libstd/task.rs +++ b/src/libstd/task.rs @@ -91,7 +91,8 @@ //! # } //! ``` -#![stable] +#![unstable = "The task spawning model will be changed as part of runtime reform, and the module \ + will likely be renamed from `task` to `thread`."] use any::Any; use comm::channel;