Skip to content

Commit 8ff7b75

Browse files
authored
update tracking issue for vec_split_at_spare
1 parent 76223fa commit 8ff7b75

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: library/alloc/src/vec/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1879,7 +1879,7 @@ impl<T, A: Allocator> Vec<T, A> {
18791879
///
18801880
/// assert_eq!(&v, &[1, 1, 2, 4, 8, 12, 16]);
18811881
/// ```
1882-
#[unstable(feature = "vec_split_at_spare", issue = "none")]
1882+
#[unstable(feature = "vec_split_at_spare", issue = "81944")]
18831883
#[inline]
18841884
pub fn split_at_spare_mut(&mut self) -> (&mut [T], &mut [MaybeUninit<T>]) {
18851885
let ptr = self.as_mut_ptr();

0 commit comments

Comments
 (0)