about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2018-04-05 00:35:09 +0100
committerOliver Middleton <olliemail27@gmail.com>2018-04-05 15:39:29 +0100
commit521e41e77d0c9213ff3ed3f2a5e863b600ce2c3a (patch)
tree0e9fe0f91c44d866b008099072ab7d31bc115972 /src/libstd
parent5758c2dd14fd29caf7c7bb2123eb6b23443b9233 (diff)
downloadrust-521e41e77d0c9213ff3ed3f2a5e863b600ce2c3a.tar.gz
rust-521e41e77d0c9213ff3ed3f2a5e863b600ce2c3a.zip
Correct a few stability attributes
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/env.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs
index 320a9f935d4..a103c0bdd59 100644
--- a/src/libstd/env.rs
+++ b/src/libstd/env.rs
@@ -723,10 +723,10 @@ pub fn args_os() -> ArgsOs {
     ArgsOs { inner: sys::args::args() }
 }
 
-#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
+#[stable(feature = "env_unimpl_send_sync", since = "1.26.0")]
 impl !Send for Args {}
 
-#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
+#[stable(feature = "env_unimpl_send_sync", since = "1.26.0")]
 impl !Sync for Args {}
 
 #[stable(feature = "env", since = "1.0.0")]
@@ -760,10 +760,10 @@ impl fmt::Debug for Args {
     }
 }
 
-#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
+#[stable(feature = "env_unimpl_send_sync", since = "1.26.0")]
 impl !Send for ArgsOs {}
 
-#[stable(feature = "env_unimpl_send_sync", since = "1.25.0")]
+#[stable(feature = "env_unimpl_send_sync", since = "1.26.0")]
 impl !Sync for ArgsOs {}
 
 #[stable(feature = "env", since = "1.0.0")]