rollup merge of #20195: nagisa/unused-typo

This commit is contained in:
Alex Crichton 2014-12-29 16:36:00 -08:00
commit 06256582e9

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()
}