about summary refs log tree commit diff
path: root/src/liballoc/string.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-09-18 11:04:23 -0500
committerGitHub <noreply@github.com>2017-09-18 11:04:23 -0500
commitfa9dd27168812cbbda754e703be409dada97a81f (patch)
tree116f394270bb21cd4eb0e0c34f6752091d397131 /src/liballoc/string.rs
parent156698ea609910c829a8d8291545ada7f0eeec1b (diff)
parent6b167f98d9dcfef79519d79d03930062215158fc (diff)
downloadrust-fa9dd27168812cbbda754e703be409dada97a81f.tar.gz
rust-fa9dd27168812cbbda754e703be409dada97a81f.zip
Rollup merge of #44640 - budziq:stabilize_splice, r=dtolnay
Stabilized vec_splice and modified splice tracking issue

This stabilizes the vec_splice (Vec part of splice RFC)
Fixes #32310.
Diffstat (limited to 'src/liballoc/string.rs')
-rw-r--r--src/liballoc/string.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liballoc/string.rs b/src/liballoc/string.rs
index 46b96df1eab..6d0bb264df1 100644
--- a/src/liballoc/string.rs
+++ b/src/liballoc/string.rs
@@ -1451,7 +1451,7 @@ impl String {
     /// s.splice(..beta_offset, "Α is capital alpha; ");
     /// assert_eq!(s, "Α is capital alpha; β is beta");
     /// ```
-    #[unstable(feature = "splice", reason = "recently added", issue = "32310")]
+    #[unstable(feature = "splice", reason = "recently added", issue = "44643")]
     pub fn splice<R>(&mut self, range: R, replace_with: &str)
         where R: RangeArgument<usize>
     {