summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorDaniel Micay <danielmicay@gmail.com>2014-11-10 17:04:33 -0500
committerDaniel Micay <danielmicay@gmail.com>2014-11-10 17:19:06 -0500
commitcd17ba4c1236af71594291646b586b1bc0b415d9 (patch)
treeb97a55090b8185141addb6e636da03da5b3d9570 /src/libstd
parenta30b72bb1420620d5b36dbd221a81374d3668271 (diff)
downloadrust-cd17ba4c1236af71594291646b586b1bc0b415d9.tar.gz
rust-cd17ba4c1236af71594291646b586b1bc0b415d9.zip
note the intent of reforming task spawning
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/task.rs3
1 files changed, 2 insertions, 1 deletions
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;