about summary refs log tree commit diff
diff options
context:
space:
mode:
authorWithout Boats <woboats@gmail.com>2020-03-24 00:34:48 +0100
committerWithout Boats <woboats@gmail.com>2020-03-24 00:34:48 +0100
commit3cc4ef93260adc89eca3799d93757ff1a4c7b43f (patch)
tree7aba0cc8f945e1738251976761ee4fdb03db6698
parent4dda632faf777e415977d28b9697df6cff09b01b (diff)
downloadrust-3cc4ef93260adc89eca3799d93757ff1a4c7b43f.tar.gz
rust-3cc4ef93260adc89eca3799d93757ff1a4c7b43f.zip
correct rustc version
-rw-r--r--src/libstd/io/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index 4323dfff26f..1022123347e 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -1060,10 +1060,10 @@ impl<'a> DerefMut for IoSliceMut<'a> {
 #[repr(transparent)]
 pub struct IoSlice<'a>(sys::io::IoSlice<'a>);
 
-#[stable(feature = "iovec-send-sync", since = "1.43.0")]
+#[stable(feature = "iovec-send-sync", since = "1.44.0")]
 unsafe impl<'a> Send for IoSlice<'a> { }
 
-#[stable(feature = "iovec-send-sync", since = "1.43.0")]
+#[stable(feature = "iovec-send-sync", since = "1.44.0")]
 unsafe impl<'a> Sync for IoSlice<'a> { }
 
 #[stable(feature = "iovec", since = "1.36.0")]