about summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 13:00:01 -0400
committerCarol (Nichols || Goulding) <carol.nichols@gmail.com>2016-05-23 13:00:01 -0400
commitc22c52449ad29021debd61cad6cadbc5a325433e (patch)
tree90b68513f282e0f464df306523f05f88bbcc7d5c /src/libcore
parentd2ee6e04ab7f2095351b48acff7c997dc4ac779a (diff)
"more than 32" => "more than 32 elements"
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/clone.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/clone.rs b/src/libcore/clone.rs
index 82097c6b5e7..489aa66885f 100644
--- a/src/libcore/clone.rs
+++ b/src/libcore/clone.rs
@@ -68,8 +68,8 @@ use marker::Sized;
 /// Manual implementations should be careful to uphold this invariant; however, unsafe code
 /// must not rely on it to ensure memory safety.
 ///
-/// An example is an array holding more than 32 of a type that is `Clone`; the standard library
-/// only implements `Clone` up until arrays of size 32. In this case, the implementation of
+/// An example is an array holding more than 32 elements of a type that is `Clone`; the standard
+/// library only implements `Clone` up until arrays of size 32. In this case, the implementation of
 /// `Clone` cannot be `derive`d, but can be implemented as:
 ///
 /// ```