about summary refs log tree commit diff
path: root/src/libstd/io/mod.rs
diff options
context:
space:
mode:
authorSteven Fackler <sfackler@gmail.com>2020-03-11 18:02:52 -0700
committerSteven Fackler <sfackler@gmail.com>2020-04-26 04:24:16 -0700
commit07443f17d4c2e8135d1cbf415f6bd22eee86b64a (patch)
tree1fc883588b4098f527849ab69f4fa8fef23b55cb /src/libstd/io/mod.rs
parent15262ec6be6fcfc9f27e174a0714d5a62e775fb0 (diff)
downloadrust-07443f17d4c2e8135d1cbf415f6bd22eee86b64a.tar.gz
rust-07443f17d4c2e8135d1cbf415f6bd22eee86b64a.zip
Update name
Diffstat (limited to 'src/libstd/io/mod.rs')
-rw-r--r--src/libstd/io/mod.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libstd/io/mod.rs b/src/libstd/io/mod.rs
index c6229fb39e0..c9db48db9bd 100644
--- a/src/libstd/io/mod.rs
+++ b/src/libstd/io/mod.rs
@@ -588,8 +588,8 @@ pub trait Read {
     /// and coalesce writes into a single buffer for higher performance.
     ///
     /// The default implementation returns `false`.
-    #[unstable(feature = "can_vector", issue = "none")]
-    fn can_read_vectored(&self) -> bool {
+    #[unstable(feature = "can_vector", issue = "69941")]
+    fn is_read_vectored(&self) -> bool {
         false
     }
 
@@ -1325,8 +1325,8 @@ pub trait Write {
     /// and coalesce writes into a single buffer for higher performance.
     ///
     /// The default implementation returns `false`.
-    #[unstable(feature = "can_vector", issue = "none")]
-    fn can_write_vectored(&self) -> bool {
+    #[unstable(feature = "can_vector", issue = "69941")]
+    fn is_write_vectored(&self) -> bool {
         false
     }