about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDylan DPC <99973273+Dylan-DPC@users.noreply.github.com>2022-11-02 22:32:04 +0530
committerGitHub <noreply@github.com>2022-11-02 22:32:04 +0530
commit68db106366583484362c415db0f2b3fd82cec767 (patch)
tree6c15d450a242cac68e3bb7886b6ff24550d7e85d
parentbbd3a106636d0e283c825310c45a071e9699ee79 (diff)
parent3e23d60a321891eb9a1e4bf47077187ac7ec457c (diff)
downloadrust-68db106366583484362c415db0f2b3fd82cec767.tar.gz
rust-68db106366583484362c415db0f2b3fd82cec767.zip
Rollup merge of #103807 - H4x5:string-extend-from-within-tracking-issue, r=Dylan-DPC
Add tracking issue for `string_extend_from_within`

Tracking issue: #103806

The original PR didn't create a tracking issue.
-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>,