Skip to content

Commit 2788c71

Browse files
committed
Updates Clone docs for Copy comparison.
1 parent 40c1623 commit 2788c71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/clone.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838

3939
/// A common trait for the ability to explicitly duplicate an object.
4040
///
41-
/// Differs from [`Copy`] in that [`Copy`] is implicit and extremely inexpensive, while
41+
/// Differs from [`Copy`] in that [`Copy`] is implicit and an inexpensive bit-wise copy, while
4242
/// `Clone` is always explicit and may or may not be expensive. In order to enforce
4343
/// these characteristics, Rust does not allow you to reimplement [`Copy`], but you
4444
/// may reimplement `Clone` and run arbitrary code.

0 commit comments

Comments
 (0)