about summary refs log tree commit diff
path: root/src/liballoc/string.rs
diff options
context:
space:
mode:
authorMichal Budzynski <budziq@gmail.com>2017-09-17 10:41:24 +0200
committerMichal Budzynski <budziq@gmail.com>2017-09-17 10:41:24 +0200
commit6b167f98d9dcfef79519d79d03930062215158fc (patch)
tree4d6851caaf498b4a505b912058f5418e8818ed48 /src/liballoc/string.rs
parent7b932d2e127b3b694e8cd2a6ae30d78cc3436547 (diff)
downloadrust-6b167f98d9dcfef79519d79d03930062215158fc.tar.gz
rust-6b167f98d9dcfef79519d79d03930062215158fc.zip
Updated tracking issue for String::splice and its unstable-book entry
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>
     {