Skip to content

Commit

Permalink
Updated tracking issue for String::splice and its unstable-book entry
Browse files Browse the repository at this point in the history
  • Loading branch information
budziq committed Sep 17, 2017
1 parent 7b932d2 commit 6b167f9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
7 changes: 3 additions & 4 deletions src/doc/unstable-book/src/library-features/splice.md
@@ -1,14 +1,13 @@
# `splice`

The tracking issue for this feature is: [#32310]
The tracking issue for this feature is: [#44643]

[#32310]: https://github.com/rust-lang/rust/issues/32310
[#44643]: https://github.com/rust-lang/rust/issues/44643

------------------------

The `splice()` method on `String` allows you to replace a range
of values in a string with another range of values, and returns
the replaced values.
of values in a string with another range of values.

A simple example:

Expand Down
2 changes: 1 addition & 1 deletion src/liballoc/string.rs
Expand Up @@ -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>
{
Expand Down

0 comments on commit 6b167f9

Please sign in to comment.