about summary refs log tree commit diff
path: root/library
diff options
context:
space:
mode:
authorAshley Mannix <kodraus@hey.com>2021-02-10 09:50:59 +1000
committerGitHub <noreply@github.com>2021-02-10 09:50:59 +1000
commit8ff7b75c016af8bebf995f12e7e5b246ad849470 (patch)
treed2fa027f7aff0c20e1b6342b91249b63b6790a5d /library
parent76223fafb4f6d552ff7b310a00dd5ee23cb4a1b6 (diff)
downloadrust-8ff7b75c016af8bebf995f12e7e5b246ad849470.tar.gz
rust-8ff7b75c016af8bebf995f12e7e5b246ad849470.zip
update tracking issue for vec_split_at_spare
Diffstat (limited to 'library')
-rw-r--r--library/alloc/src/vec/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/mod.rs b/library/alloc/src/vec/mod.rs
index 8620200b038..c7b4c98041b 100644
--- a/library/alloc/src/vec/mod.rs
+++ b/library/alloc/src/vec/mod.rs
@@ -1879,7 +1879,7 @@ impl<T, A: Allocator> Vec<T, A> {
     ///
     /// assert_eq!(&v, &[1, 1, 2, 4, 8, 12, 16]);
     /// ```
-    #[unstable(feature = "vec_split_at_spare", issue = "none")]
+    #[unstable(feature = "vec_split_at_spare", issue = "81944")]
     #[inline]
     pub fn split_at_spare_mut(&mut self) -> (&mut [T], &mut [MaybeUninit<T>]) {
         let ptr = self.as_mut_ptr();