Skip to content

Commit c22c524

Browse files
committed
"more than 32" => "more than 32 elements"
1 parent d2ee6e0 commit c22c524

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/libcore/clone.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@ use marker::Sized;
6868
/// Manual implementations should be careful to uphold this invariant; however, unsafe code
6969
/// must not rely on it to ensure memory safety.
7070
///
71-
/// An example is an array holding more than 32 of a type that is `Clone`; the standard library
72-
/// only implements `Clone` up until arrays of size 32. In this case, the implementation of
71+
/// An example is an array holding more than 32 elements of a type that is `Clone`; the standard
72+
/// library only implements `Clone` up until arrays of size 32. In this case, the implementation of
7373
/// `Clone` cannot be `derive`d, but can be implemented as:
7474
///
7575
/// ```

0 commit comments

Comments
 (0)