about summary refs log tree commit diff
diff options
context:
space:
mode:
authorqwerty01 <qw3rty01@gmail.com>2021-06-10 11:28:26 -0400
committerqwerty01 <qw3rty01@gmail.com>2021-06-10 11:28:26 -0400
commit2788c71dd44f0badd88a8a9971b5ce23e95905b7 (patch)
tree43c4de4c2d8124860693628fca31e6046644ac42
parent40c1623b16fb28f7625cab13570752d04513815c (diff)
downloadrust-2788c71dd44f0badd88a8a9971b5ce23e95905b7.tar.gz
rust-2788c71dd44f0badd88a8a9971b5ce23e95905b7.zip
Updates `Clone` docs for `Copy` comparison.
-rw-r--r--library/core/src/clone.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/clone.rs b/library/core/src/clone.rs
index 51a2dc03de3..19faf9cddac 100644
--- a/library/core/src/clone.rs
+++ b/library/core/src/clone.rs
@@ -38,7 +38,7 @@
 
 /// A common trait for the ability to explicitly duplicate an object.
 ///
-/// Differs from [`Copy`] in that [`Copy`] is implicit and extremely inexpensive, while
+/// Differs from [`Copy`] in that [`Copy`] is implicit and an inexpensive bit-wise copy, while
 /// `Clone` is always explicit and may or may not be expensive. In order to enforce
 /// these characteristics, Rust does not allow you to reimplement [`Copy`], but you
 /// may reimplement `Clone` and run arbitrary code.