Skip to content

Commit 125ec78

Browse files
authored
update tracking issue for vec_extend_from_within
1 parent d5c2211 commit 125ec78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/vec/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1897,7 +1897,7 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
18971897
/// vec.extend_from_within(4..8);
18981898
/// assert_eq!(vec, [0, 1, 2, 3, 4, 2, 3, 4, 0, 1, 4, 2, 3, 4]);
18991899
/// ```
1900-
#[unstable(feature = "vec_extend_from_within", issue = "none")]
1900+
#[unstable(feature = "vec_extend_from_within", issue = "81656")]
19011901
pub fn extend_from_within<R>(&mut self, src: R)
19021902
where
19031903
R: RangeBounds<usize>,

0 commit comments

Comments
 (0)