diff options
| author | Aaron Turon <aturon@mozilla.com> | 2014-12-06 18:34:37 -0800 |
|---|---|---|
| committer | Aaron Turon <aturon@mozilla.com> | 2014-12-18 23:31:51 -0800 |
| commit | 43ae4b3301cc0605839778ecf59effb32b752e33 (patch) | |
| tree | aa111f5adc1eaa1e996847e1437d1b1b40821ce0 /src/libcore | |
| parent | 14c1a103bc3f78721df1dc860a75a477c8275e3a (diff) | |
| download | rust-43ae4b3301cc0605839778ecf59effb32b752e33.tar.gz rust-43ae4b3301cc0605839778ecf59effb32b752e33.zip | |
Fallout from new thread API
Diffstat (limited to 'src/libcore')
| -rw-r--r-- | src/libcore/borrow.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/borrow.rs b/src/libcore/borrow.rs index b44b87bd938..4bf356fb552 100644 --- a/src/libcore/borrow.rs +++ b/src/libcore/borrow.rs @@ -92,7 +92,7 @@ impl<'a, T, Sized? B> BorrowFrom<Cow<'a, T, B>> for B where B: ToOwned<T> { /// Trait for moving into a `Cow` pub trait IntoCow<'a, T, Sized? B> { - /// Moves `self` into `Cow` + /// Moves `serlf` into `Cow` fn into_cow(self) -> Cow<'a, T, B>; } |
