We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ee6e0 commit c22c524Copy full SHA for c22c524
src/libcore/clone.rs
@@ -68,8 +68,8 @@ use marker::Sized;
68
/// Manual implementations should be careful to uphold this invariant; however, unsafe code
69
/// must not rely on it to ensure memory safety.
70
///
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
+/// 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
73
/// `Clone` cannot be `derive`d, but can be implemented as:
74
75
/// ```
0 commit comments