Add tracking issue for String::insert_str

This commit is contained in:
Murarth 2016-08-09 11:42:16 -07:00
parent f0139140f6
commit 0a3564afaf

View File

@ -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);