We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d7185dc commit b55f049Copy full SHA for b55f049
src/libcore/marker.rs
@@ -120,11 +120,10 @@ pub trait Unsize<T> {
120
/// ```
121
///
122
/// The `PointList` `struct` cannot implement `Copy`, because `Vec<T>` is not `Copy`. If we
123
-/// attempt to derive a `Copy` implementation, we'll get an error.
+/// attempt to derive a `Copy` implementation, we'll get an error:
124
125
/// ```text
126
-/// error: the trait `Copy` may not be implemented for this type; field `points` does not implement
127
-/// `Copy`
+/// the trait `Copy` may not be implemented for this type; field `points` does not implement `Copy`
128
129
130
/// ## How can I implement `Copy`?
0 commit comments