Skip to content

Commit ffd0f5a

Browse files
committed
Fix a typo
1 parent e64a819 commit ffd0f5a

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)