Skip to content

Commit

Permalink
Rollup merge of rust-lang#35554 - murarth:insert-str-issue, r=apasel422
Browse files Browse the repository at this point in the history
Add tracking issue for `String::insert_str`
  • Loading branch information
steveklabnik authored Aug 10, 2016
2 parents 785d0f5 + 0a3564a commit 928d105
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libcollections/string.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ impl String {
#[inline]
#[unstable(feature = "insert_str",
reason = "recent addition",
issue = "0")]
issue = "35553")]
pub fn insert_str(&mut self, idx: usize, string: &str) {
let len = self.len();
assert!(idx <= len);
Expand Down

0 comments on commit 928d105

Please sign in to comment.