about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorJosh Stone <jistone@redhat.com>2019-03-05 16:28:32 -0800
committerJosh Stone <jistone@redhat.com>2019-03-05 16:28:32 -0800
commite478cadbbe51e335b7248018141877b88770fe68 (patch)
tree751116bc651f0d4b7ba47be501f5e30612093d0f /src/liballoc
parent51e0d1c2990619ed55e0a387ae4fab71992069df (diff)
downloadrust-e478cadbbe51e335b7248018141877b88770fe68.tar.gz
rust-e478cadbbe51e335b7248018141877b88770fe68.zip
Add a tracking issue for new as_slice methods
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/vec.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/vec.rs b/src/liballoc/vec.rs
index 7c3cab77bfb..adcd3d84f48 100644
--- a/src/liballoc/vec.rs
+++ b/src/liballoc/vec.rs
@@ -2481,7 +2481,7 @@ impl<'a, T> Drain<'a, T> {
     /// let _ = drain.next().unwrap();
     /// assert_eq!(drain.as_slice(), &['b', 'c']);
     /// ```
-    #[unstable(feature = "vec_drain_as_slice", reason = "recently added", issue = "0")]
+    #[unstable(feature = "vec_drain_as_slice", reason = "recently added", issue = "58957")]
     pub fn as_slice(&self) -> &[T] {
         self.iter.as_slice()
     }