about summary refs log tree commit diff
path: root/library/alloc/src/vec
diff options
context:
space:
mode:
authorAshley Mannix <kodraus@hey.com>2021-02-02 17:47:55 +1000
committerGitHub <noreply@github.com>2021-02-02 17:47:55 +1000
commit125ec782bd1f5929a72ff4a520daf316db4c1e7c (patch)
treeb92612ad8d8be853444a761902eca2a413d918db /library/alloc/src/vec
parentd5c221107ec2bb1260f122f67c5217bc82ad90cc (diff)
downloadrust-125ec782bd1f5929a72ff4a520daf316db4c1e7c.tar.gz
rust-125ec782bd1f5929a72ff4a520daf316db4c1e7c.zip
update tracking issue for vec_extend_from_within
Diffstat (limited to 'library/alloc/src/vec')
-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 e71b9fe2990..bbcb72bc7b6 100644
--- a/library/alloc/src/vec/mod.rs
+++ b/library/alloc/src/vec/mod.rs
@@ -1897,7 +1897,7 @@ impl<T: Clone, A: Allocator> Vec<T, A> {
     /// vec.extend_from_within(4..8);
     /// assert_eq!(vec, [0, 1, 2, 3, 4, 2, 3, 4, 0, 1, 4, 2, 3, 4]);
     /// ```
-    #[unstable(feature = "vec_extend_from_within", issue = "none")]
+    #[unstable(feature = "vec_extend_from_within", issue = "81656")]
     pub fn extend_from_within<R>(&mut self, src: R)
     where
         R: RangeBounds<usize>,