]> git.lizzy.rs Git - rust.git/commitdiff
doc rewording
authorking6cong <king6cong@gmail.com>
Mon, 5 Jun 2017 02:56:16 +0000 (10:56 +0800)
committerking6cong <king6cong@gmail.com>
Mon, 5 Jun 2017 03:02:38 +0000 (11:02 +0800)
src/libcore/marker.rs

index 6602fccd5898282fd59d94450cfa2d07603dd45e..05df84708e05d3aa1629e00c2826dc827c7c7575 100644 (file)
@@ -205,7 +205,7 @@ pub trait Unsize<T: ?Sized> {
 /// but not `Copy`.
 ///
 /// [`Clone`] is a supertrait of `Copy`, so everything which is `Copy` must also implement
-/// [`Clone`]. If a type is `Copy` then its [`Clone`] implementation need only return `*self`
+/// [`Clone`]. If a type is `Copy` then its [`Clone`] implementation only needs to return `*self`
 /// (see the example above).
 ///
 /// ## When can my type be `Copy`?