From 61ac5fdab73878584053b79457eed34cf5b7055d Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Tue, 4 Jun 2013 18:40:50 -0400 Subject: [PATCH] clone: fix docstring @T and @mut T for T: Const have DeepClone --- src/libstd/clone.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libstd/clone.rs b/src/libstd/clone.rs index f74d9abda8b28..266dd1a35e32c 100644 --- a/src/libstd/clone.rs +++ b/src/libstd/clone.rs @@ -90,8 +90,7 @@ clone_impl!(char) /// managed boxes which would otherwise not be copied. pub trait DeepClone { /// Return a deep copy of the value. Unlike `Clone`, the contents of shared pointer types - /// *are* copied. Note that this is currently unimplemented for managed boxes, as - /// it would need to handle cycles, but it is implemented for other smart-pointer types. + /// *are* copied. fn deep_clone(&self) -> Self; }