Skip to content

Commit b76ca89

Browse files
author
Jonathan Turner
authored
Rollup merge of rust-lang#35554 - murarth:insert-str-issue, r=apasel422
Add tracking issue for `String::insert_str`
2 parents b758688 + 0a3564a commit b76ca89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcollections/string.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ impl String {
11801180
#[inline]
11811181
#[unstable(feature = "insert_str",
11821182
reason = "recent addition",
1183-
issue = "0")]
1183+
issue = "35553")]
11841184
pub fn insert_str(&mut self, idx: usize, string: &str) {
11851185
let len = self.len();
11861186
assert!(idx <= len);

0 commit comments

Comments
 (0)