about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSky <sky@h4x5.dev>2022-10-31 12:01:20 -0400
committerGitHub <noreply@github.com>2022-10-31 12:01:20 -0400
commit3e23d60a321891eb9a1e4bf47077187ac7ec457c (patch)
tree3b03a84e9e693201f0463d458a44de2235598303
parent2afca78a0b03db144c5d8b9f8868feebfe096309 (diff)
downloadrust-3e23d60a321891eb9a1e4bf47077187ac7ec457c.tar.gz
rust-3e23d60a321891eb9a1e4bf47077187ac7ec457c.zip
Add tracking issue for `string_extend_from_within`
-rw-r--r--library/alloc/src/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/string.rs b/library/alloc/src/string.rs
index c436adf7006..c9ba8921f6e 100644
--- a/library/alloc/src/string.rs
+++ b/library/alloc/src/string.rs
@@ -949,7 +949,7 @@ impl String {
     /// assert_eq!(string, "abcdecdeabecde");
     /// ```
     #[cfg(not(no_global_oom_handling))]
-    #[unstable(feature = "string_extend_from_within", issue = "none")]
+    #[unstable(feature = "string_extend_from_within", issue = "103806")]
     pub fn extend_from_within<R>(&mut self, src: R)
     where
         R: RangeBounds<usize>,