Skip to content

Commit 3772ce5

Browse files
committed
Merge pull request #20195 from nagisa/unused-typo
Fix a typo Reviewed-by: alexcrichton
2 parents 3fb66e6 + ffd0f5a commit 3772ce5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/clone.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ pub trait Clone {
3636
/// but can be overridden to reuse the resources of `a` to avoid unnecessary
3737
/// allocations.
3838
#[inline(always)]
39-
#[unstable = "this function rarely unused"]
39+
#[unstable = "this function is rarely used"]
4040
fn clone_from(&mut self, source: &Self) {
4141
*self = source.clone()
4242
}

0 commit comments

Comments
 (0)