about summary refs log tree commit diff
diff options
context:
space:
mode:
authorking6cong <king6cong@gmail.com>2017-06-05 10:56:16 +0800
committerking6cong <king6cong@gmail.com>2017-06-05 11:02:38 +0800
commit018722e48599559a5488e4eab58b95d8d6fb75b8 (patch)
treeff56d5f967b978e31a36cf9870eacfbef6dd46b5
parentc94a9ac8ae33e6580940e02abb425dd2fe69b5d8 (diff)
downloadrust-018722e48599559a5488e4eab58b95d8d6fb75b8.tar.gz
rust-018722e48599559a5488e4eab58b95d8d6fb75b8.zip
doc rewording
-rw-r--r--src/libcore/marker.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 6602fccd589..05df84708e0 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -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`?