diff options
| author | Richo Healey <richo@psych0tik.net> | 2014-05-24 21:59:56 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2014-05-26 19:06:13 -0700 |
| commit | c7fe4ffe3d8315dfe98bee6d040b5a0381daab91 (patch) | |
| tree | d005bac35d0a12ce8a17b10f1df692fec845061c /src/libstd/string.rs | |
| parent | 746d086f9322d24fa7b389dd911e204ca35012ae (diff) | |
| download | rust-c7fe4ffe3d8315dfe98bee6d040b5a0381daab91.tar.gz rust-c7fe4ffe3d8315dfe98bee6d040b5a0381daab91.zip | |
std: Remove String::from_owned_str as it's redundant
[breaking-change]
Diffstat (limited to 'src/libstd/string.rs')
| -rw-r--r-- | src/libstd/string.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/libstd/string.rs b/src/libstd/string.rs index f4d1e2a1858..8897750df65 100644 --- a/src/libstd/string.rs +++ b/src/libstd/string.rs @@ -68,7 +68,8 @@ impl String { } } - /// Creates a new string buffer from the given owned string, taking care not to copy it. + #[allow(missing_doc)] + #[deprecated = "obsoleted by the removal of ~str"] #[inline] pub fn from_owned_str(string: String) -> String { string |
