Skip to content

Commit 0a4c136

Browse files
committed
auto merge of rust-lang#17446 : steveklabnik/rust/gh17445, r=alexcrichton
Fixes rust-lang#17445.
2 parents f351e67 + bd322f4 commit 0a4c136

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)