Fix a typo

This commit is contained in:
Simonas Kazlauskas 2014-12-24 12:37:56 +02:00
parent e64a8193b0
commit ffd0f5a111

View File

@ -36,7 +36,7 @@ pub trait Clone {
/// but can be overridden to reuse the resources of `a` to avoid unnecessary
/// allocations.
#[inline(always)]
#[unstable = "this function rarely unused"]
#[unstable = "this function is rarely used"]
fn clone_from(&mut self, source: &Self) {
*self = source.clone()
}