Skip to content

Commit

Permalink
"more than 32" => "more than 32 elements"
Browse files Browse the repository at this point in the history
  • Loading branch information
carols10cents committed May 23, 2016
1 parent d2ee6e0 commit c22c524
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libcore/clone.rs
Expand Up @@ -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:
///
/// ```
Expand Down

0 comments on commit c22c524

Please sign in to comment.