about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-09-23 09:00:40 +0000
committerbors <bors@rust-lang.org>2014-09-23 09:00:40 +0000
commit0a4c136d6a82ed57714b033029d6c4dd7ee4e2dc (patch)
tree8fc9c40897987113beb7a476492f9f4d80afb443 /src
parentf351e676cbe594893a043d52a9cd6149c3f47082 (diff)
parentbd322f4c1fdc1e2109c388fd424378ff7be644ca (diff)
downloadrust-0a4c136d6a82ed57714b033029d6c4dd7ee4e2dc.tar.gz
rust-0a4c136d6a82ed57714b033029d6c4dd7ee4e2dc.zip
auto merge of #17446 : steveklabnik/rust/gh17445, r=alexcrichton
Fixes #17445.
Diffstat (limited to 'src')
-rw-r--r--src/libcore/clone.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libcore/clone.rs b/src/libcore/clone.rs
index 247f63115a7..a495c780e02 100644
--- a/src/libcore/clone.rs
+++ b/src/libcore/clone.rs
@@ -25,9 +25,7 @@ the `clone` method.
 
 /// A common trait for cloning an object.
 pub trait Clone {
-    /// Returns a copy of the value. The contents of owned pointers
-    /// are copied to maintain uniqueness, while the contents of
-    /// managed pointers are not copied.
+    /// Returns a copy of the value.
     fn clone(&self) -> Self;
 
     /// Perform copy-assignment from `source`.