about summary refs log tree commit diff
path: root/src/libstd/thread_local
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2015-01-21 16:15:40 -0800
committerBrian Anderson <banderson@mozilla.com>2015-01-21 19:25:55 -0800
commit41278c5441f484a68a20ca12d93cab368a2a943f (patch)
treeaf1a988123f3917e1e83206a1d083ff34bfcbbb7 /src/libstd/thread_local
parent0768892abee31e1f8065deb4c61f0a88a682b17a (diff)
downloadrust-41278c5441f484a68a20ca12d93cab368a2a943f.tar.gz
rust-41278c5441f484a68a20ca12d93cab368a2a943f.zip
Remove 'since' from unstable attributes
Diffstat (limited to 'src/libstd/thread_local')
-rw-r--r--src/libstd/thread_local/mod.rs4
-rw-r--r--src/libstd/thread_local/scoped.rs2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/thread_local/mod.rs b/src/libstd/thread_local/mod.rs
index bf74acda721..6fc5347b71e 100644
--- a/src/libstd/thread_local/mod.rs
+++ b/src/libstd/thread_local/mod.rs
@@ -218,7 +218,7 @@ macro_rules! __thread_local_inner {
 }
 
 /// Indicator of the state of a thread local storage key.
-#[unstable(feature = "unnamed_feature", since = "1.0.0",
+#[unstable(feature = "unnamed_feature",
            reason = "state querying was recently added")]
 #[derive(Eq, PartialEq, Copy)]
 pub enum State {
@@ -302,7 +302,7 @@ impl<T: 'static> Key<T> {
     /// initialization does not panic. Keys in the `Valid` state are guaranteed
     /// to be able to be accessed. Keys in the `Destroyed` state will panic on
     /// any call to `with`.
-    #[unstable(feature = "unnamed_feature", since = "1.0.0",
+    #[unstable(feature = "unnamed_feature",
                reason = "state querying was recently added")]
     pub fn state(&'static self) -> State {
         unsafe {
diff --git a/src/libstd/thread_local/scoped.rs b/src/libstd/thread_local/scoped.rs
index e7062b298d2..415219aaa83 100644
--- a/src/libstd/thread_local/scoped.rs
+++ b/src/libstd/thread_local/scoped.rs
@@ -38,7 +38,7 @@
 //! });
 //! ```
 
-#![unstable(feature = "unnamed_feature", since = "1.0.0",
+#![unstable(feature = "unnamed_feature",
             reason = "scoped TLS has yet to have wide enough use to fully consider \
                       stabilizing its interface")]