Skip to content

Commit 68db106

Browse files
authored
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.
2 parents bbd3a10 + 3e23d60 commit 68db106

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/alloc/src/string.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ impl String {
949949
/// assert_eq!(string, "abcdecdeabecde");
950950
/// ```
951951
#[cfg(not(no_global_oom_handling))]
952-
#[unstable(feature = "string_extend_from_within", issue = "none")]
952+
#[unstable(feature = "string_extend_from_within", issue = "103806")]
953953
pub fn extend_from_within<R>(&mut self, src: R)
954954
where
955955
R: RangeBounds<usize>,

0 commit comments

Comments
 (0)