Skip to content

Commit bd322f4

Browse files
committed
remove references to owned and managed pointers in clone docs
Fixes #17445.
1 parent 3907a13 commit bd322f4

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/libcore/clone.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ the `clone` method.
2525

2626
/// A common trait for cloning an object.
2727
pub trait Clone {
28-
/// Returns a copy of the value. The contents of owned pointers
29-
/// are copied to maintain uniqueness, while the contents of
30-
/// managed pointers are not copied.
28+
/// Returns a copy of the value.
3129
fn clone(&self) -> Self;
3230

3331
/// Perform copy-assignment from `source`.

0 commit comments

Comments
 (0)