1
Fork 0

Rollup merge of #39836 - durka:patch-37, r=alexcrichton

fix types in to_owned doctest

Fixes #39831.
This commit is contained in:
Corey Farwell 2017-02-15 23:48:15 -05:00 committed by GitHub
commit 46564d405c

View file

@ -52,11 +52,11 @@ pub trait ToOwned {
/// Basic usage:
///
/// ```
/// let s = "a"; // &str
/// let ss = s.to_owned(); // String
/// let s: &str = "a";
/// let ss: String = s.to_owned();
///
/// let v = &[1, 2]; // slice
/// let vv = v.to_owned(); // Vec
/// let v: &[i32] = &[1, 2];
/// let vv: Vec<i32> = v.to_owned();
/// ```
#[stable(feature = "rust1", since = "1.0.0")]
fn to_owned(&self) -> Self::Owned;