From 2788c71dd44f0badd88a8a9971b5ce23e95905b7 Mon Sep 17 00:00:00 2001 From: qwerty01 Date: Thu, 10 Jun 2021 11:28:26 -0400 Subject: [PATCH] Updates `Clone` docs for `Copy` comparison. --- library/core/src/clone.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/core/src/clone.rs b/library/core/src/clone.rs index 51a2dc03de318..19faf9cddac6f 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.