diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs index 5909c5cc30e5..86e91df38ab3 100644 --- a/src/libcore/marker.rs +++ b/src/libcore/marker.rs @@ -120,11 +120,10 @@ pub trait Unsize { /// ``` /// /// The `PointList` `struct` cannot implement `Copy`, because `Vec` is not `Copy`. If we -/// attempt to derive a `Copy` implementation, we'll get an error. +/// attempt to derive a `Copy` implementation, we'll get an error: /// /// ```text -/// error: the trait `Copy` may not be implemented for this type; field `points` does not implement -/// `Copy` +/// the trait `Copy` may not be implemented for this type; field `points` does not implement `Copy` /// ``` /// /// ## How can I implement `Copy`?