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
Jonathan Turner authored Aug 11, 2016
2 parents b758688 + 0a3564a commit b76ca89
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 b76ca89

Please sign in to comment.